Files
uc2/cli/src/compat/include/msvc/getopt.h
T

11 lines
217 B
C
Raw Normal View History

2026-03-11 08:16:11 -04:00
/* Minimal POSIX getopt for MSVC */
#ifndef _COMPAT_GETOPT_H
#define _COMPAT_GETOPT_H
extern char *optarg;
extern int optind, opterr, optopt;
int getopt(int argc, char *const argv[], const char *optstring);
#endif