SystemFunctions.h 323 B

12345678910111213
  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. void initSystemFunctions();
  9. #endif