SystemFunctions.h 295 B

123456789101112
  1. #ifndef BASIC_SYSTEM_FUNCTIONS_H
  2. #define BASIC_SYSTEM_FUNCTIONS_H
  3. #include "Code.h"
  4. typedef bool (*SystemFunction)(Code* c, Value* r, Value* vs, i32 n);
  5. i32 getSystemFunctionIndex(const char* s);
  6. i32 getSystemFunctionArguments(i32 index);
  7. SystemFunction getSystemFunction(i32 index);
  8. #endif