image-threads/getopt.h
2023-01-23 11:35:33 +02:00

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