toaruos/base/usr/include/getopt.h

24 lines
436 B
C
Raw Normal View History

#pragma once
2018-05-02 12:58:47 +03:00
2018-10-12 05:15:40 +03:00
#include <_cheader.h>
_Begin_C_Header
2018-05-02 12:58:47 +03:00
struct option {
const char *name;
int has_arg;
int *flag;
int val;
};
extern char * optarg;
extern int optind, opterr, optopt;
extern int getopt_long(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex);
#define no_argument 0
#define required_argument 1
#define optional_argument 2 /* Unsupported */
2018-10-12 05:15:40 +03:00
_End_C_Header