1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2025-02-22 16:35:56 +00:00
TegraExplorer/source/tegraexplorer/script/functions.h
suchmememanyskill ba0ded0f8b start of tsV2
2020-11-06 21:19:29 +01:00

10 lines
No EOL
260 B
C

#pragma once
#include "types.h"
#define BIT(n) (1U << n)
#define VARARGS(x) {x, 1, 0}
#define OPERATORARGS(x) {x, 0, 1}
dictValue_t executeFunction(scriptCtx_t* ctx, char* func_name);
varVector_t extractVars(scriptCtx_t* ctx, lexarToken_t* tokens, u32 len);