Home | History | Annotate | Download | only in lib

Lines Matching defs:no

87 // check all instances of opt and "no"opt in optlist, return true if opt
88 // found and last instance wasn't no. If clean, remove each instance from list.
91 int optlen = strlen(opt), len, no, got = 0;
97 no = 2*(*s == 'n' && s[1] == 'o');
98 if (optlen == len-no && !strncmp(opt, s+no, optlen)) {
99 got = !no;
127 // Odd syntax: typelist all yes = if any, typelist all no = if none.
136 skip = strncmp(typelist, "no", 2);
141 // If one -t starts with "no", the rest must too
142 if (strncmp(t, "no", 2)) error_exit("bad typelist");