You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "e.h" |
|
|
|
/* externally accessible functions */ |
|
char * |
|
e_user_homedir_get(void) |
|
{ |
|
char *homedir; |
|
|
|
homedir = getenv("HOME"); |
|
if (!homedir) return strdup("/tmp"); |
|
return strdup(homedir); |
|
}
|
|
|