SSBM Decomp
Loading...
Searching...
No Matches
__mem.h
Go to the documentation of this file.
1#ifndef ___mem_
2#define ___mem_
3
4#include <platform.h>
5
6SECTION_INIT void* memset(void* dst, int val, unsigned long n);
7SECTION_INIT void __fill_mem(void* dst, int val, unsigned long n);
8SECTION_INIT void* memcpy(void* dst, const void* src, unsigned long n);
9
10#endif
SECTION_INIT void * memset(void *dst, int val, unsigned long n)
Definition __mem.c:3
SECTION_INIT void __fill_mem(void *dst, int val, unsigned long n)
Definition __mem.c:22
SECTION_INIT void * memcpy(void *dst, const void *src, unsigned long n)
Definition __mem.c:80
#define SECTION_INIT
Definition platform.h:97