18 lines
239 B
C
18 lines
239 B
C
#ifndef GETOPT_H__
|
|
#define GETOPT_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern char *optarg;
|
|
extern int optind;
|
|
|
|
int getopt(int argc, char *const argv[], const char *optstring);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|