Files
Chloride/src/runtime/objects/functions/functions.h
2025-08-09 06:40:16 +01:00

17 lines
402 B
C

/*
* SPDX-FileCopyrightText: 2025 William Bell
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef FUNCTION_H
#define FUNCTION_H
#include "../object.h"
extern ArgonObject *ARGON_FUNCTION_TYPE;
ArgonObject *create_argon_native_function(char*name, native_fn native_fn);
ArgonObject *load_argon_function(Translated *translated, RuntimeState *state, struct Stack *stack);
#endif // FUNCTION_H