mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
7 lines
336 B
C
7 lines
336 B
C
|
#pragma once
|
||
|
#include "types.h"
|
||
|
|
||
|
char* utils_copyStringSize(const char* in, int size);
|
||
|
Variable_t solveEquation(scriptCtx_t* ctx, lexarToken_t* tokens, u32 len, u8 shouldFree);
|
||
|
int distanceBetweenTokens(lexarToken_t* tokens, u32 len, int openToken, int closeToken);
|
||
|
Vector_t extractVars(scriptCtx_t* ctx, lexarToken_t* tokens, u32 len);
|