forked from KolibriOS/kolibrios
10 lines
145 B
C
10 lines
145 B
C
|
#ifndef GETOPT_H
|
||
|
#define GETOPT_H
|
||
|
|
||
|
extern int optind, opterr;
|
||
|
extern char *optarg;
|
||
|
|
||
|
int getopt(int argc, char *argv[], char *optstring);
|
||
|
|
||
|
#endif
|