Luke Street 329618c585 More main progress; tons of headers & stuff
Former-commit-id: a6e365791b35de8a1c056db8a4833150450c84d9
2022-09-13 00:28:02 -04:00

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__