First commit, Vystem v0.1
This commit is contained in:
12
shelter/lib/include/std/mem.h
Normal file
12
shelter/lib/include/std/mem.h
Normal file
@@ -0,0 +1,12 @@
|
||||
// SPDX-License-Identifier: MPL-2.0
|
||||
#ifndef SH_LIB_MEM_H
|
||||
#define SH_LIB_MEM_H
|
||||
#include "std/type.h"
|
||||
#include "std/status.h"
|
||||
// Memory comparaison function
|
||||
SH_STATUS sh_mem_compare(const void *a,const void *b,sh_uint64 size);
|
||||
// Memory copy function
|
||||
SH_STATUS sh_mem_copy(const void *destination,const void *source,sh_uint64 size);
|
||||
// Memory set function
|
||||
SH_STATUS sh_mem_set_8(sh_uint8 *ptr,const sh_uint8 byte,sh_uint64 count);
|
||||
#endif
|
||||
Reference in New Issue
Block a user