File: getopt.h

package info (click to toggle)
openjpeg 1.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,584 kB
  • ctags: 5,140
  • sloc: ansic: 38,348; cpp: 6,559; tcl: 677; makefile: 276; sh: 85; csh: 17
file content (29 lines) | stat: -rwxr-xr-x 539 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* last review : october 29th, 2002 */

#ifndef _GETOPT_H_
#define _GETOPT_H_

typedef struct option
{
	char *name;
	int has_arg;
	int *flag;
	int val;
}option_t;

#define	NO_ARG	0
#define REQ_ARG	1
#define OPT_ARG	2

extern int opterr;
extern int optind;
extern int optopt;
extern int optreset;
extern char *optarg;

extern int getopt(int nargc, char *const *nargv, const char *ostr);
extern int getopt_long(int argc, char * const argv[], const char *optstring,
			const struct option *longopts, int totlen);


#endif				/* _GETOPT_H_ */