lib: c: implement strcpy and strncpy
This commit is contained in:
@@ -11,6 +11,9 @@ extern size_t strlen(const char *s);
|
||||
extern int strcmp(const char *s1, const char *s2);
|
||||
extern int strncmp(const char *s1, const char *s2, unsigned long n);
|
||||
|
||||
extern int strcpy(const char *s1, const char *s2);
|
||||
extern int strncpy(const char *s1, const char *s2, unsigned long n);
|
||||
|
||||
extern void *memset(void *str, int c, size_t n);
|
||||
extern void *memcpy(void *dst, const void *src, size_t len);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user