mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
86bda6b3d9
svn path=/trunk/; revision=2453
12 lines
255 B
C
12 lines
255 B
C
/* getopt.h
|
|
*
|
|
* Copyright (c) 1992-2001 by Mike Gleason.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#define kGetoptBadChar ((int) '?')
|
|
#define kGetoptErrMsg ""
|
|
|
|
void GetoptReset(void);
|
|
int Getopt(int nargc, const char **const nargv, const char *const ostr);
|