Lines Matching refs:p
48 char *p; in getsubopt() local
56 for (p = *optionp; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); in getsubopt()
58 if (!*p) { in getsubopt()
59 *optionp = p; in getsubopt()
64 for (suboptarg = p; in getsubopt()
65 *++p && *p != ',' && *p != '=' && *p != ' ' && *p != '\t';); in getsubopt()
67 if (*p) { in getsubopt()
73 if (*p == '=') { in getsubopt()
74 *p = '\0'; in getsubopt()
75 for (*valuep = ++p; in getsubopt()
76 *p && *p != ',' && *p != ' ' && *p != '\t'; ++p); in getsubopt()
77 if (*p) in getsubopt()
78 *p++ = '\0'; in getsubopt()
80 *p++ = '\0'; in getsubopt()
82 for (; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); in getsubopt()
86 *optionp = p; in getsubopt()