ReactOS 0.4.15-dev-7934-g1dc8d80
getopt.h
Go to the documentation of this file.
1/* getopt.h
2 *
3 * Copyright (c) 1992-2001 by Mike Gleason.
4 * All rights reserved.
5 *
6 */
7
8#define kGetoptBadChar ((int) '?')
9#define kGetoptErrMsg ""
10
11void GetoptReset(void);
12int Getopt(int nargc, const char **const nargv, const char *const ostr);
void GetoptReset(void)
Definition: getopt.c:21
int Getopt(int nargc, const char **const nargv, const char *const ostr)
Definition: getopt.c:42