gps-sdr-sim/getopt.h
2015-06-27 10:18:01 +09:00

10 lines
148 B
C

#ifndef GETOPT_H
#define GETOPT_H
extern char *optarg;
extern int optind;
int getopt(int nargc, char * const nargv[], const char *ostr) ;
#endif