File: wingetopt.h

package info (click to toggle)
lft 3.93-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,492 kB
  • sloc: ansic: 11,811; sh: 2,990; makefile: 62
file content (15 lines) | stat: -rwxr-xr-x 232 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef WINGETOPT_H
#define WINGETOPT_H

#ifdef __cplusplus
extern "C"{
#endif
extern int optind, opterr;
extern char *optarg;

int getopt(int argc, char *argv[], char *optstring);
#ifdef __cplusplus
}
#endif

#endif