1#ifndef _MSL_COMMON_STRTOUL_H
2#define _MSL_COMMON_STRTOUL_H
10unsigned long __strtoul(
int base,
int max_width,
int (*ReadProc)(
void*,
int,
int),
void* ReadProcArg,
int* chars_scanned,
int* negative,
12unsigned long long __strtoull(
int base,
int max_width,
int (*ReadProc)(
void*,
int,
int),
void* ReadProcArg,
13 int* chars_scanned,
int* negative,
int* overflow);
14int atoi(
const char* str);
15float atof(
const char* str);
static u8 base[0x2A]
Definition WPADEncrypt.c:10
static void end(b_oh_class *i_this)
Definition d_a_b_oh.cpp:343
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:22
long strtol(const char *str, char **end, int base)
Definition strtoul.c:309
float atof(const char *str)
Definition strtold.c:661
unsigned long long __strtoull(int base, int max_width, int(*ReadProc)(void *, int, int), void *ReadProcArg, int *chars_scanned, int *negative, int *overflow)
Definition strtoul.c:153
unsigned long strtoul(const char *str, char **end, int base)
Definition strtoul.c:285
int atoi(const char *str)
Definition strtoul.c:334