Implemented memcpy()

This commit is contained in:
Max Wash
2020-04-17 11:22:23 +01:00
parent 8e2953292e
commit bf4e733688
2 changed files with 49 additions and 0 deletions

View File

@@ -7,7 +7,13 @@
extern "C" {
#endif
extern void *memcpy(void *dest, const void *src, size_t sz);
extern void *memcmp(const void *a, const void *b, size_t sz);
extern void *memmove(void *dest, const void *src, size_t sz);
extern size_t strlen(const char *str);
extern int strcmp(const char *a, const char *b);
extern int strncmp(const char *a, const char *b, size_t sz);
#if defined(__cplusplus)
} /* extern "C" */