1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef __STRING_H #define __STRING_H #include <stdint.h> #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