18 #ifndef __POK_LIBC_STRING_H__
19 #define __POK_LIBC_STRING_H__
23 char *itoa(
int value,
char *buff,
int radix);
24 void *memcpy(
void *dest,
const void *src,
size_t count);
25 void *memset(
void *dest,
unsigned char val,
size_t count);
26 int strcmp(
const char *s1,
const char *s2);
27 int strncmp(
const char *s1,
const char *s2,
size_t size);
28 size_t strlen(
const char *s);
29 char *strcpy(
char *dest,
const char *str);
30 char *strncpy(
char *dest,
const char *str,
size_t size);
31 int memcmp (
const void* v1,
const void* v2,
size_t n);
36 int streq(
char* s1,
char* s2);