Files
RedBear-OS/include/getopt.h
T
2018-09-24 14:45:36 -07:00

14 lines
247 B
C

#ifndef _GETOPT_H
#define _GETOPT_H
// Generated from:
// `grep "opt" target/include/unistd.h`
extern char* optarg;
extern int opterr;
extern int optind;
extern int optopt;
int getopt(int argc, char *const *argv, const char *optstring);
#endif