mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-27 07:46:33 +00:00
7 lines
107 B
C
7 lines
107 B
C
|
#ifndef __STRCPY_H__
|
||
|
#define __STRCPY_H__
|
||
|
|
||
|
char *strcpy(char *s1, const char *s2);
|
||
|
|
||
|
#endif // __STRCPY_H__
|