mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
94858cd9fe
Co-authored-by: SwareJonge <41187958+SwareJonge@users.noreply.github.com>
13 lines
330 B
C
13 lines
330 B
C
#ifndef SAMPLE_H
|
|
#define SAMPLE_H
|
|
|
|
#include "types.h"
|
|
|
|
extern void Jac_imixcopy(s16* ta, s16* tb, s16* td, s32 s);
|
|
extern void Jac_bcopyfast(u32* src, u32* dest, u32 size);
|
|
extern void Jac_bcopy(void* src, void* dest, s32 size);
|
|
extern void Jac_bzerofast(u32* dest, u32 size);
|
|
extern void Jac_bzero(void* dest, s32 size);
|
|
|
|
#endif
|