- Added simple function "getopt" in stdlib (tcc)

git-svn-id: svn://kolibrios.org@8380 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
superturbocat2001
2020-12-12 20:09:30 +00:00
parent fc647254c0
commit 99103794f2
6 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#ifndef GETOPT_H
#define GETOPT_H
extern int optind, opterr;
extern char *optarg;
int getopt(int argc, char *argv[], char *optstring);
#endif