23 typedef unsigned char uint8_t;
24 typedef unsigned short uint16_t;
25 typedef unsigned int uint32_t;
27 typedef unsigned int size_t;
31 int StringCopyN(
char *dest,
const char *src,
int len);
32 int ByteSet(
void *buf,
int c,
size_t len);
33 void MemoryCopy(
void *dest,
const void *src,
size_t len);
34 int StringCompare(
const char *p1,
const char *p2);