parser mostly fixed, still needs a lot more testing though, and need to store parsed values in a datatype

This commit is contained in:
herbglitch 2024-11-01 04:39:45 -06:00
parent 963b99c6bd
commit 006b4c63f7
5 changed files with 49 additions and 13 deletions

View file

@ -90,6 +90,11 @@ void ARC_Parser_Parse(ARC_Parser *parser, ARC_String **data);
*/
void ARC_Parser_ParseFile(ARC_Parser *parser, ARC_String *path);
/**
* @brief basic tag for letting the parser know it is ok to end
*/
#define ARC_PARSER_TAG_LAMBDA 0
#ifdef __cplusplus
}
#endif