Codebase list sidguesser / 4f8ca645-d68b-4bc8-8da9-b4e29de91e9a/main getopt / include / Getopt.h
4f8ca645-d68b-4bc8-8da9-b4e29de91e9a/main

Tree @4f8ca645-d68b-4bc8-8da9-b4e29de91e9a/main (Download .tar.gz)

Getopt.h @4f8ca645-d68b-4bc8-8da9-b4e29de91e9a/mainraw · history · blame

#ifndef _GETOPT_
#define _GETOPT_

int getopt(int argc, char **argv, char *optstring);

extern char *optarg;		// returned arg to go with this option
extern int optind;		// index to next argv element to process
extern int opterr;		// should error messages be printed?
extern int optopt;		//

#define BADCH ('?')

#endif // _GETOPT