mirror of https://github.com/PrimeDecomp/prime.git
18 lines
221 B
C
18 lines
221 B
C
|
#ifndef __AR_H__
|
||
|
#define __AR_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
u32 ARInit(u32* stack_index_addr, u32 num_entries);
|
||
|
u32 ARAlloc(u32 length);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __AR_H__
|