9 lines
210 B
C
9 lines
210 B
C
#ifndef FUNCTION_H
|
|
#define FUNCTION_H
|
|
#include "../object.h"
|
|
|
|
void init_function_type();
|
|
|
|
ArgonObject *load_argon_function(Translated *translated, RuntimeState *state, struct Stack stack);
|
|
|
|
#endif // FUNCTION_H
|