Files
my-os-project2/ulib/string/conv.h
2025-09-13 15:43:31 +02:00

8 lines
234 B
C

#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_