Home | History | Annotate | Download | only in util

Lines Matching refs:cp

90 static const char *skip_sep(const char *cp)
92 while (*cp && isspace(*cp))
93 cp++;
95 return cp;
98 static const char *skip_arg(const char *cp)
100 while (*cp && !isspace(*cp))
101 cp++;
103 return cp;