This commit is contained in:
2025-08-21 20:29:11 -04:00
parent 4226b195d5
commit 6837ee4f15
2 changed files with 100 additions and 5 deletions

View File

@@ -5,4 +5,14 @@
licence_t TOlicence(const char *s);
struct option {
const char *name;
int has_arg;
int *flag;
int val;
};
int getopt_long(int argc, char *const argv[], const char *optstring,
const struct option *longopts, int *longindex);
#endif