SSBM Decomp
Loading...
Searching...
No Matches
strtoul.h
Go to the documentation of this file.
1#ifndef _MSL_COMMON_STRTOUL_H
2#define _MSL_COMMON_STRTOUL_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8long strtol(const char* str, char** end, int base);
9unsigned long strtoul(const char* str, char** end, int base);
10unsigned long __strtoul(int base, int max_width,
11 int (*ReadProc)(void*, int, int), void* ReadProcArg,
12 int* chars_scanned, int* negative, int* overflow);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif /* _MSL_COMMON_STRTOUL_H */
bool end(Vec3 *a, Vec3 *b, float unk_sum)
Definition lbcollision.c:297
unsigned long __strtoul(int base, int max_width, int(*ReadProc)(void *, int, int), void *ReadProcArg, int *chars_scanned, int *negative, int *overflow)
Definition strtoul.c:50
long strtol(const char *str, char **end, int base)
unsigned long strtoul(const char *str, char **end, int base)
Definition strtoul.c:24