feat(memory, string): add memory and string utilities
This commit is contained in:
10
include/memory.h
Normal file
10
include/memory.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef RIVOS_MEMORY_H
|
||||
#define RIVOS_MEMORY_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
void *kmemset(void *buf, char c, size_t n);
|
||||
|
||||
void *kmemcpy(void *dst, const void *src, size_t n);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user