Lines Matching full:home
62 /* return the home directory of the current user as an allocated string */
65 char *home; in homedir() local
67 home = GetEnv("CURL_HOME", FALSE); in homedir()
68 if(home) in homedir()
69 return home; in homedir()
71 home = GetEnv("HOME", FALSE); in homedir()
72 if(home) in homedir()
73 return home; in homedir()
80 home = pw->pw_dir; in homedir()
81 if(home && home[0]) in homedir()
82 home = strdup(home); in homedir()
84 home = NULL; in homedir()
89 home = GetEnv("APPDATA", TRUE); in homedir()
90 if(!home) in homedir()
91 home = GetEnv("%USERPROFILE%\\Application Data", TRUE); /* Normally only in homedir()
94 return home; in homedir()