more userlaand stuff
This commit is contained in:
11
libc/include/string.h
Normal file
11
libc/include/string.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef LIBC_STRING_H
|
||||
#define LIBC_STRING_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
void* memcpy(void* dst, const void* src, size_t n);
|
||||
void* memset(void* dst, int c, size_t n);
|
||||
void* memmove(void* dst, const void* src, size_t n);
|
||||
int memcmp(const void* s1, const void* s2, size_t n);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user