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,
int (*ReadProc)(
void*,
int,
int),
void* ReadProcArg,
int* chars_scanned,
int* negative,
static void end(b_oh_class *i_this)
Definition d_a_b_oh.cpp:527
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:23
long strtol(const char *str, char **end, int base)
Definition strtoul.c:180
unsigned long strtoul(const char *str, char **end, int base)
Definition strtoul.c:155