File: getopt.h

package info (click to toggle)
csmash 0.6.6-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,548 kB
  • ctags: 1,687
  • sloc: cpp: 19,531; sh: 3,515; makefile: 439; ansic: 120; sed: 16
file content (16 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __getopt_h__INCLUDED__
#define __getopt_h__INCLUDED__

#ifdef __cplusplus
extern "C" {
#endif

extern int opterr, optind, optopt, optreset;
extern char *optarg;
int getopt(int argc, char *const *argv, const char *option);

#ifdef __cplusplus
}
#endif

#endif /* __getopt_h__INCLUDED__ */