Files
dusklight/include/MSL_C/MSL_Common/Src/strtoul.h
T
TakaRikka ba08966f58 MSL_C cleanup (#238)
* clean up MSL_C files according to prime decomp

* remove asm
2023-01-02 22:28:46 -07:00

17 lines
362 B
C

#ifndef MSL_COMMON_SRC_STRTOUL_H
#define MSL_COMMON_SRC_STRTOUL_H
#ifdef __cplusplus
extern "C" {
#endif
long strtol(const char* str, char** endptr, int base);
unsigned long strtoul(const char* str, char** endptr, int base);
unsigned long __strtoul(const char* str, char** endptr, int base);
#ifdef __cplusplus
}
#endif
#endif /* MSL_COMMON_SRC_STRTOUL_H */