summaryrefslogtreecommitdiff
path: root/Libraries/LibC/getopt.h
blob: a55f06df526a1c83d69e9fbf7a99e61ed4fb294e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <sys/cdefs.h>

__BEGIN_DECLS

int getopt(int argc, char* const argv[], const char* optstring);
extern char* optarg;
extern int optind;
extern int opterr;
extern int optopt;

__END_DECLS