mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-16 08:56:42 -05:00
Initial version
This commit is contained in:
parent
e8cffea675
commit
8ce502489c
1 changed files with 49 additions and 0 deletions
49
src/userfile.c
Normal file
49
src/userfile.c
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
/*
|
||||||
|
* Get full filename
|
||||||
|
* Copyright (c) 2003 by Jaroslav Kysela <perex@suse.cz>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2.1 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <wordexp.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
int snd_user_file(const char *file, char **result)
|
||||||
|
{
|
||||||
|
wordexp_t we;
|
||||||
|
int err;
|
||||||
|
|
||||||
|
assert(file && result);
|
||||||
|
err = wordexp(file, &we, WRDE_NOCMD);
|
||||||
|
switch (err) {
|
||||||
|
case WRDE_NOSPACE:
|
||||||
|
return -ENOMEM;
|
||||||
|
case 0:
|
||||||
|
if (we.we_wordc == 1)
|
||||||
|
break;
|
||||||
|
/* fall thru */
|
||||||
|
default:
|
||||||
|
wordfree(&we);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
*result = strdup(we.we_wordv[0]);
|
||||||
|
if (*result == NULL)
|
||||||
|
return -ENOMEM;
|
||||||
|
wordfree(&we);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue