#ifndef __STRING_H #define __STRING_H #include #ifdef __cplusplus extern "C" { #endif void* memset(void* s, int c, size_t n); char* strcpy(char* d, const char* s); int strcmp(const char* s1, const char* s2); #ifdef __cplusplus }; #endif #endif