mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-01 22:58:49 -04:00
Fix doxygen documents
Fix the warnings of doxygen parsing. Add some missing documentation.
This commit is contained in:
parent
7651690858
commit
087184b0f9
49 changed files with 300 additions and 167 deletions
|
|
@ -23,6 +23,15 @@
|
|||
#include <wordexp.h>
|
||||
#include <assert.h>
|
||||
|
||||
/**
|
||||
* \brief Get the full file name
|
||||
* \param file The file name string to parse
|
||||
* \param result The pointer to store the resultant file name
|
||||
* \return 0 if successful, or a negative error code
|
||||
*
|
||||
* Parses the given file name with POSIX-Shell-like expansion and
|
||||
* stores the first matchine one. The returned string is strdup'ed.
|
||||
*/
|
||||
int snd_user_file(const char *file, char **result)
|
||||
{
|
||||
wordexp_t we;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue