1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-02 05:01:56 +00:00

added src level documentation for the get_path() function

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12892 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
al 2004-07-23 16:35:20 +00:00
parent 8bad258e0d
commit 8791d149b7

View File

@ -1,4 +1,13 @@
/*
* Get path to config dir/file.
*
* Return Values:
* Returns the pointer to the ALLOCATED buffer containing the
* zero terminated path string. This buffer has to be FREED
* by the caller.
*
*/
char *get_path(char *filename){
char *homedir;
char *buff;