2024-12-16 01:39:42 -06:00

15 lines
307 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void memory_set_char(char * buf, char c, int length);
void memory_set_int(int * buf, int c, int length);
void memory_copy_char(char * src, int length, char * dst);
void memory_copy_u32(void * _src, int length, void * _dst);
#ifdef __cplusplus
}
#endif