LibC: Implement getopt()

This commit is contained in:
2024-02-14 15:00:58 +02:00
parent 198dde8365
commit 4cd9abdd15
2 changed files with 86 additions and 1 deletions

View File

@@ -160,7 +160,7 @@ long gethostid(void);
int gethostname(char* name, size_t namelen);
char* getlogin(void);
int getlogin_r(char* name, size_t namesize);
int getopt(int argc, char* const argv[], const char* optstring);
int getopt(int argc, char* const argv[], const char* optstring);
pid_t getpgid(pid_t pid);
pid_t getpgrp(void);
pid_t getpid(void);