diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-17 21:50:27 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-17 21:50:27 -0400 |
commit | 6ec566718a894201f859a163d88e4254684b5384 (patch) | |
tree | 3a1fb53aee714c72dd1bd4410cd1b6943b32314a /sys/include/lib | |
parent | 5111974673a3d67d9450ec3790dc833c3c4bb3c3 (diff) |
kernel: lib: Add memmove()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/lib')
-rw-r--r-- | sys/include/lib/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
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_ */ |