diff options
Diffstat (limited to 'sys/include/lib/string.h')
-rw-r--r-- | sys/include/lib/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h index e83f4f1..c09e6f4 100644 --- a/sys/include/lib/string.h +++ b/sys/include/lib/string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -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_ */ |