The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 #ifndef GETOPT_H#define GETOPT_Hextern char *optarg;extern int optind;extern int opterr;extern int optopt;int getopt(int argc, char* const *argv, const char *optstr);#endif /* GETOPT_H */
#ifndef GETOPT_H
#define GETOPT_H
extern
char
*optarg;
int
optind;
opterr;
optopt;
getopt(
argc,
*
const
*argv,
*optstr);
#endif /* GETOPT_H */