Parsing commandline arguments

This commit is contained in:
2025-09-13 15:43:31 +02:00
parent dc3d80d707
commit e6891b39cc
18 changed files with 448 additions and 59 deletions

7
ulib/string/conv.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef ULIB_STRING_CONV_H_
#define ULIB_STRING_CONV_H_
unsigned long string_conv_strtoul(const char *nptr, char **endptr, int base);
long string_conv_strtol(const char *nptr, char **endptr, int base);
#endif // ULIB_STRING_CONV_H_