#ifndef BASIC_SYSTEM_FUNCTIONS_H #define BASIC_SYSTEM_FUNCTIONS_H #include "Code.h" typedef bool (*SystemFunction)(Code* c, Value* r, Value* vs, i32 n); i32 getSystemFunctionIndex(const char* s); i32 getSystemFunctionArguments(i32 index); SystemFunction getSystemFunction(i32 index); #endif