Initial commit
This commit is contained in:
commit
cbc51f523e
125 changed files with 34817 additions and 0 deletions
16
src/include/string.h
Normal file
16
src/include/string.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef STRING_H
|
||||
#define STRING_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
void *memset(void *addr, int c, uint64_t n);
|
||||
|
||||
void *memcpy(void *dest, void *src, uint64_t n);
|
||||
|
||||
void *memmove(void *dest, const void *src, uint64_t n);
|
||||
|
||||
int memcmp(const void *s1, const void *s2, uint64_t n);
|
||||
|
||||
uint64_t strlen(const char* str);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue