mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 20:01:27 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
17 lines
362 B
C
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 */
|