Lines Matching defs:optstring
42 golly(int argc, char* const* argv, const char* optstring, const struct option* longopts, int* longindex, int flags)
49 if (!up || optstring != lastoptstring || longopts != lastlongopts)
51 if (!up && !(up = sfstropen()) || !(t = strdup(optstring)))
101 lastoptstring = optstring;
115 if (opterr && (!optstring || *optstring != ':'))
142 getopt_long(int argc, char* const* argv, const char* optstring, const struct option* longopts, int* longindex)
144 return golly(argc, argv, optstring, longopts, longindex, 2);
148 getopt_long_only(int argc, char* const* argv, const char* optstring, const struct option* longopts, int* longindex)
150 return golly(argc, argv, optstring, longopts, longindex, 1);