HomeSort by: relevance | last modified time | path
    Searched defs:temp_dirname (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl2/texinfo/dist/info/
filesys.c 167 char *temp_dirname; local
177 while ((temp_dirname = extract_colon_unit (path, &dirname_index)))
183 if (*temp_dirname == '~')
187 expanded_dirname = tilde_expand_word (temp_dirname);
188 free (temp_dirname);
189 temp_dirname = expanded_dirname;
192 temp = (char *)xmalloc (30 + strlen (temp_dirname) + strlen (filename));
193 strcpy (temp, temp_dirname);
200 free (temp_dirname);
man.c 176 char *temp_dirname; local
181 while ((temp_dirname = extract_colon_unit (path, &dirname_index)))
188 if (*temp_dirname == '~')
192 expanded_dirname = tilde_expand_word (temp_dirname);
193 free (temp_dirname);
194 temp_dirname = expanded_dirname;
197 temp = (char *)xmalloc (34 + strlen (temp_dirname) + strlen (filename));
198 strcpy (temp, temp_dirname);
204 free (temp_dirname);

Completed in 12 milliseconds