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

  /src/sbin/mount/
vfslist.c 69 char *nextcp, *fsl; local in function:makevfslist
82 for (i = 0, nextcp = fsl; *nextcp; nextcp++)
83 if (*nextcp == ',')
90 nextcp = fsl;
92 av[i++] = nextcp;
93 while ((nextcp = strchr(nextcp, ',')) != NULL) {
94 *nextcp++ = '\0'
    [all...]
  /src/bin/df/
df.c 321 char *nextcp, **av; local in function:maketypelist
338 for (i = 1, nextcp = fslist;
339 (nextcp = strchr(nextcp, ',')) != NULL; i++)
340 ++nextcp;
346 for (i = 1, nextcp = fslist;
347 (nextcp = strchr(nextcp, ',')) != NULL; i++) {
348 *nextcp = '\0';
349 av[i] = ++nextcp;
    [all...]

Completed in 11 milliseconds