#ifndef STRING_H #define STRING_H #ifdef __cplusplus extern "C" { #endif void strcpy(char * dst, const char * src); #ifdef __cplusplus } #endif #endif