mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
22 lines
424 B
C
22 lines
424 B
C
#ifndef _MEM_H
|
|
#define _MEM_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#pragma section code_type ".init"
|
|
|
|
void * memcpy(void * dst, const void * src, size_t n);
|
|
void * memset(void * dst, int val, size_t n);
|
|
int memcmp(const void* src1, const void* src2, size_t n);
|
|
void __fill_mem(void * dst, int val, unsigned long n);
|
|
|
|
#pragma section code_type
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
#endif |