kolibrios/programs/develop/ktcc/trunk/libc/include/getopt.h

10 lines
145 B
C
Raw Normal View History

#ifndef GETOPT_H
#define GETOPT_H
extern int optind, opterr;
extern char *optarg;
int getopt(int argc, char *argv[], char *optstring);
#endif