1#ifndef _MSL_COMMON_STRTOUL_H
2#define _MSL_COMMON_STRTOUL_H
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);
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