The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#ifndef GETOPT_H
#define GETOPT_H
extern char *optarg;
extern int optind;
extern int opterr;
extern int optopt;
int getopt(int argc, char* const *argv, const char *optstr);
#endif /* GETOPT_H */