summaryrefslogtreecommitdiff
path: root/codec/getopt.h
blob: 23299d1b9bbb32de0380b6205b9966848315ea5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* last review : october 29th, 2002 */

#ifndef _GETOPT_H_
#define _GETOPT_H_

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);

#endif				/* _GETOPT_H_ */