File: getopt.h

package info (click to toggle)
midicsv 1.1%2Bdfsg.1-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 316 kB
  • ctags: 183
  • sloc: ansic: 1,304; perl: 471; makefile: 159
file content (10 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10

extern int optind, optopt;
extern char *optarg;

/*  We do the following naming side-step to permit testing
    our local getopt() on systems which include getopt()
    and declare it incompatibly in stdio.h or stdlib.h.  */

extern int Getopt(int nargc, char *nargv[], char *ostr);
#define getopt(a, b, c) Getopt(a, b, c)