mirror of
https://github.com/Harshit-Dhanwalkar/AsciiCam.git
synced 2026-06-09 10:25:12 +02:00
14 lines
285 B
C
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
|