HomeSort by: relevance | last modified time | path
    Searched defs:oli (Results 1 - 3 of 3) sorted by relevancy

  /src/common/lib/libc/stdlib/
getopt.c 80 const char *oli; /* option letter list index */ local in function:getopt
112 if (optopt == ':' || (oli = strchr(ostr, optopt)) == NULL) {
121 if (oli[1] != ':') {
131 else if (oli[2] == ':')
  /src/usr.bin/pr/
egetopt.c 76 char *oli; /* option letter list index */ local in function:egetopt
111 !(oli = strchr(ostr, eoptopt))) {
170 ++oli;
171 if ((*oli != ':') && (*oli != '?')) {
186 } else if (*oli == '?') {
  /src/lib/libc/stdlib/
getopt_long.c 170 const char *oli; /* option letter list index */ local in function:getopt_internal
249 (oli = strchr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
258 if (optchar == 'W' && oli[1] == ';') { /* -W long-option */
277 if (*++oli != ':') { /* doesn't take argument */
285 else if (oli[1] != ':') { /* arg not optional */

Completed in 11 milliseconds