Home | History | Annotate | Download | only in lib

Lines Matching refs:optlist

62 // check all instances of opt and "no"opt in optlist, return true if opt
64 int comma_scan(char *optlist, char *opt, int clean)
68 if (optlist) for (;;) {
69 char *s = comma_iterate(&optlist, &len);
76 if (optlist) memmove(s, optlist, strlen(optlist)+1);
85 // return true if all scanlist options enabled in optlist
86 int comma_scanall(char *optlist, char *scanlist)
93 i = comma_scan(optlist, s, 0);