Lines Matching refs:Home
134 const char *Home; /* the HOME environment variable */
135 int HomeLen; /* length of Home */
292 Home = getenv("HOME");
293 if (Home != NULL) {
297 * Make a copy of Home because the string returned by getenv() can be
302 temp_p = strdup(Home);
303 Home = temp_p;
306 if (Home == NULL)
307 Home = "./";
309 HomeLen = (int) strlen(Home);