mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-27 15:42:42 -04:00
ba08966f58
* clean up MSL_C files according to prime decomp * remove asm
20 lines
495 B
C
20 lines
495 B
C
#ifndef MSL_COMMON_SRC_MEM_FUNCS_H
|
|
#define MSL_COMMON_SRC_MEM_FUNCS_H
|
|
|
|
#include "MSL_C/MSL_Common/Src/stddef.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __copy_longs_rev_unaligned(void* dst, const void* src, size_t n);
|
|
void __copy_longs_unaligned(void* dst, const void* src, size_t n);
|
|
void __copy_longs_rev_aligned(void* dst, const void* src, size_t n);
|
|
void __copy_longs_aligned(void* dst, const void* src, size_t n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_MEM_FUNCS_H */
|