Home | History | Annotate | Download | only in utilities

Lines Matching refs:Pathname

356  * PARAMETERS:  Pathname        - File pathname string to be converted
358 * RETURN: Modifies the input Pathname
361 * the entire input file pathname string.
367 char *Pathname)
370 if (!Pathname)
375 while (*Pathname)
377 if (*Pathname == '\\')
379 *Pathname = '/';
382 Pathname++;