mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07: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 |