From 36deb69f7d33d2eb5ba64966be8b8eab4d5c040d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 20 Nov 2016 15:22:25 +0000 Subject: [PATCH] add memmove() function prototype --- include/bas_string.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/bas_string.h b/include/bas_string.h index c743c95..d2430fd 100644 --- a/include/bas_string.h +++ b/include/bas_string.h @@ -34,6 +34,7 @@ extern char *strcat(char *dst, const char *src); extern char *strncat(char *dst, const char *src, size_t max); extern int atoi(const char *c); extern void *memcpy(void *dst, const void *src, size_t n); +extern void *memmove(void *dst, const void *src, size_t n); extern void *memset(void *s, int c, size_t n); extern int memcmp(const void *s1, const void *s2, size_t max); extern void bzero(void *s, size_t n);