1 #ifndef __STRCPY_H__
2 #define __STRCPY_H__
3 
4 extern char *strcpy(char *dest, const char *src);
5 
6 #endif
7