1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2025-02-23 00:45:36 +00:00
TegraExplorer/source/tegraexplorer/script/functions.h

10 lines
260 B
C
Raw Normal View History

2020-03-31 14:24:34 +02:00
#pragma once
2020-11-06 21:19:29 +01:00
#include "types.h"
2020-03-31 14:24:34 +02:00
2020-11-06 21:19:29 +01:00
#define BIT(n) (1U << n)
2020-03-31 14:24:34 +02:00
2020-11-06 21:19:29 +01:00
#define VARARGS(x) {x, 1, 0}
#define OPERATORARGS(x) {x, 0, 1}
2020-03-31 14:24:34 +02:00
2020-11-06 21:19:29 +01:00
dictValue_t executeFunction(scriptCtx_t* ctx, char* func_name);
varVector_t extractVars(scriptCtx_t* ctx, lexarToken_t* tokens, u32 len);