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.
13 lines
208 B
13 lines
208 B
19 years ago
|
#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);
|
||
|
}
|