Lines Matching refs:p
47 char *p; in getsubopt() local
55 for (p = *optionp; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); in getsubopt()
57 if (!*p) { in getsubopt()
58 *optionp = p; in getsubopt()
63 for (suboptarg = p; in getsubopt()
64 *++p && *p != ',' && *p != '=' && *p != ' ' && *p != '\t';); in getsubopt()
66 if (*p) { in getsubopt()
72 if (*p == '=') { in getsubopt()
73 *p = '\0'; in getsubopt()
74 for (*valuep = ++p; in getsubopt()
75 *p && *p != ',' && *p != ' ' && *p != '\t'; ++p); in getsubopt()
76 if (*p) in getsubopt()
77 *p++ = '\0'; in getsubopt()
79 *p++ = '\0'; in getsubopt()
81 for (; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); in getsubopt()
85 *optionp = p; in getsubopt()