mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 23:26:45 -04:00
ba08966f58
* clean up MSL_C files according to prime decomp * remove asm
20 lines
427 B
C
20 lines
427 B
C
#ifndef MSL_COMMON_SRC_MEM_H
|
|
#define MSL_COMMON_SRC_MEM_H
|
|
|
|
#include "MSL_C/MSL_Common/Src/stddef.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int memcmp(const void* lhs, const void* rhs, size_t count);
|
|
void* __memrchr(const void* ptr, int ch, size_t count);
|
|
void* memchr(const void* ptr, int ch, size_t count);
|
|
void* memmove(void* dst, const void* src, size_t n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_MEM_H */
|