From 6ec566718a894201f859a163d88e4254684b5384 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 17 May 2025 21:50:27 -0400 Subject: kernel: lib: Add memmove() Signed-off-by: Ian Moffett --- sys/include/lib/string.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/include/lib') diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h index c138cf1..c09e6f4 100644 --- a/sys/include/lib/string.h +++ b/sys/include/lib/string.h @@ -47,5 +47,6 @@ int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n); int atoi(char *s); +void *memmove(void *s1, const void *s2, size_t n); #endif /* !_LIB_STRING_H_ */ -- cgit v1.2.3