File: getopt.h

package info (click to toggle)
ftplib 3.1-1-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 708 kB
  • ctags: 649
  • sloc: ansic: 2,990; python: 158; makefile: 68
file content (13 lines) | stat: -rw-r--r-- 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