#ifndef __STRING_H__ #define __STRING_H__ #include void memset(void* dst, int data, int sz); void memcpy(void* dst, void* src, int sz); #endif