1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-10-18 11:51:46 +01:00
TegraExplorer/source/script/parser.h

16 lines
430 B
C
Raw Permalink Normal View History

2021-07-09 21:56:13 +01:00
2020-12-28 13:51:59 +00:00
#pragma once
2021-07-09 21:56:13 +01:00
#include "compat.h"
typedef struct {
Function_t main;
Vector_t staticVarHolder;
u8 valid;
} ParserRet_t;
2020-12-28 13:51:59 +00:00
2021-07-09 21:56:13 +01:00
#define SCRIPT_PARSER_ERR(message, ...) printScriptError(SCRIPT_PARSER_FATAL, message, ##__VA_ARGS__); return (ParserRet_t){0}
2020-12-28 13:51:59 +00:00
2021-07-09 21:56:13 +01:00
void exitStaticVars(Vector_t* v);
void exitFunction(Operator_t* start, u32 len);
2021-07-25 20:39:45 +01:00
ParserRet_t parseScript(char* in, u32 len);
char* utils_copyStringSize(const char* in, int size);