ZealOS/zealbooter/lib/strcpy.h

7 lines
107 B
C
Raw Normal View History

#ifndef __STRCPY_H__
#define __STRCPY_H__
char *strcpy(char *s1, const char *s2);
#endif // __STRCPY_H__