AsciiCam/C/lib/nl_getopt.h
2026-06-08 13:36:51 +05:30

14 lines
285 B
C

#ifndef NL_GETOPT_H
#define NL_GETOPT_H
extern int nl_optind;
extern int nl_opterr;
extern char *nl_optarg;
int nl_getopt(int argc, char *const argv[], const char *opts);
#define getopt(ac, av, opts) nl_getopt(ac, av, opts)
#define optarg nl_optarg
#define optind nl_optind
#endif