#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 */
#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 */