mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
14 lines
273 B
C
14 lines
273 B
C
#pragma once
|
|
#ifndef GETOPT_H
|
|
#define GETOPT_H
|
|
#if XASH_WIN32
|
|
extern int opterr;
|
|
extern int optind;
|
|
extern int optopt;
|
|
extern int optreset;
|
|
extern char *optarg;
|
|
|
|
int getopt( int nargc, char * const nargv[], const char *ostr );
|
|
#endif // XASH_WIN32
|
|
#endif // GETOPT_H
|