Implemented memcpy()
This commit is contained in:
@@ -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" */
|
||||
|
||||
Reference in New Issue
Block a user