[liba] Add memmove to string.h

Change-Id: I99b412dc7404e2711dbf7753f0d619694dee3d19
This commit is contained in:
Romain Goyet
2017-07-30 22:11:05 +02:00
committed by Romain Goyet
parent 301e0a7891
commit 2898ec916c
3 changed files with 23 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
LIBA_BEGIN_DECLS
void * memcpy(void * dst, const void * src, size_t n);
void * memmove(void * dst, const void * src, size_t n);
void * memset(void * b, int c, size_t len);
size_t strlen(const char * s);
int strcmp(const char *s1, const char *s2);