mirror of https://github.com/zeldaret/tp.git
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 */
|