Go to the documentation of this file.
18 #ifndef __POK_KERNEL_LIBC_H__
19 #define __POK_KERNEL_LIBC_H__
23 void *
memcpy(
void * to,
const void * from,
size_t n);
27 void *
memset(
void *dest,
unsigned char val,
size_t count);
28 int strlen (
const char* str);
30 int strcmp (
const char *s1,
const char *s2);
31 int strncmp(
const char *s1,
const char *s2,
size_t size);
34 #if defined (POK_NEEDS_CONSOLE) || defined (POK_NEEDS_DEBUG) || defined (POK_NEEDS_INSTRUMENTATION) || defined (POK_NEEDS_COVERAGE_INFOS)
35 int printf(
const char *format, ...);