summaryrefslogtreecommitdiffstats
path: root/utils/raptor_getopt.h
blob: 56ba8eacf93a21a6d3511067d910ec7d122d73ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 
 * Public Domain getopt header
 *
 */

#ifndef RAPTOR_GETOPT_H
#define RAPTOR_GETOPT_H

#ifdef __cplusplus
extern "C" {
#endif

int getopt(int argc, char * const argv[], const char *optstring);
extern char *optarg;
extern int optind, opterr, optopt;

#ifdef __cplusplus
}
#endif

#endif