43#define VA_SIZE(TYPE) \
44 ((sizeof(TYPE) + sizeof(STACKITEM) - 1) \
45 & ~(sizeof(STACKITEM) - 1))
47#define va_start(AP, LASTARG) \
48 (AP=((va_list)&(LASTARG) + VA_SIZE(LASTARG)))
52#define va_arg(AP, TYPE) \
53 (AP += VA_SIZE(TYPE), *((TYPE *)(AP - VA_SIZE(TYPE))))
62extern wchar_t*
wstrchr(
wchar_t* s,
int c);
68extern char*
sztoa(
size_t value,
char* str,
int base);
69extern size_t strlen(
const char* s);
uint32_t wstrsize(wchar_t *s)
Definition clib.cpp:84
char * sztoa(size_t value, char *str, int base)
Definition clib.cpp:107
void memset(void *targ, uint8_t val, uint32_t len)
Definition clib.cpp:34
int to_lower(int c)
Definition clib.cpp:94
size_t strlen(const char *s)
Definition utclib.c:379
void memcpy(void *targ, void *src, uint32_t len)
Definition clib.cpp:58
wchar_t * wstrchr(wchar_t *s, int c)
Definition clib.cpp:66
int is_digit(int c)
Definition clib.cpp:100
int wstrlen(wchar_t *s)
Definition clib.cpp:77
int to_upper(int c)
Definition clib.cpp:88
unsigned int uint32_t
Definition acefiex.h:163
unsigned char uint8_t
Definition acefiex.h:161