Added support for "~" expansion in the dotdesktop-path (and only in that place, in...
[pandora-libraries.git] / include / pnd_utility.h
1
2 #ifndef h_pnd_utility_h
3 #define h_pnd_utility_h
4
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8
9 // given a malloc'd pointer to a string, expand ~ to $HOME as often as it is found, returning a
10 // new string; the old string is destroyed in the process, or returned as-is.
11 char *pnd_expand_tilde ( char *freeable_buffer );
12
13 #ifdef __cplusplus
14 } /* "C" */
15 #endif
16
17 #endif