Mercurial > mplayer.hg
view get_path.c @ 6974:916f62dd0910
Another big batch of cosmetics *only*.
2 character indentation everywhere, 2 blank lines before new sections.
The docs should now have a nice and uniform look.
author | diego |
---|---|
date | Sun, 11 Aug 2002 18:27:38 +0000 |
parents | d21bae2028a6 |
children | ad429d617df4 |
line wrap: on
line source
char *get_path(char *filename){ char *homedir; char *buff; static char *config_dir = "/.mplayer"; int len; if ((homedir = getenv("HOME")) == NULL) return NULL; len = strlen(homedir) + strlen(config_dir) + 1; if (filename == NULL) { if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s", homedir, config_dir); } else { len += strlen(filename) + 1; if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s/%s", homedir, config_dir, filename); } mp_msg(MSGT_GLOBAL,MSGL_V,"get_path('%s') -> '%s'\n",filename,buff); return buff; }