cosmopolitan/third_party/getopt/long1.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
323 B
C
Raw Normal View History

2023-08-16 02:24:21 +00:00
#ifndef _GETOPT_CORE_H
#define _GETOPT_CORE_H
2023-08-15 05:22:58 +00:00
#ifdef COSMOPOLITAN_GETOPT_H_
#error "don't mix getopt_long() with cosmo's getopt()"
#endif
COSMOPOLITAN_C_START_
extern char *optarg;
extern int optind, opterr, optopt, optreset;
int getopt(int, char *const *, const char *);
COSMOPOLITAN_C_END_
2023-08-16 02:24:21 +00:00
#endif /* _GETOPT_CORE_H */