File: getopt.h

package info (click to toggle)
ftplib 3-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 848 kB
  • ctags: 509
  • sloc: ansic: 1,860; python: 152; makefile: 122; sh: 10
file content (13 lines) | stat: -rwxr-xr-x 330 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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