src/libcedos/include/string.h (view raw)
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef STRING_H #define STRING_H #include <stdint.h> typedef uint32_t size_t; void *memset(void *str, int c, size_t n); char * strcpy ( char * destination, const char * source ); #endif