Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getopt.h « msvc - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a2ec42a617f9a94bf868bad40320ce8cadf7222 (plain)
1
2
3
4
5
6
7
8
9
#ifndef GETOPT_H
#define GETOPT_H

int getopt(int argc, char * const argv[], const char *optstring);
extern char *optarg;
extern int optind, opterr, optopt;
#include <getopt_long.h>

#endif   /* GETOPT_H */