creation and destruction in parser, also added some stuff to gitingore

This commit is contained in:
herbglitch 2024-10-16 05:14:53 -06:00
parent 5842197142
commit 60acfd075a
6 changed files with 151 additions and 4 deletions

View file

@ -43,7 +43,6 @@ typedef ARC_Bool (* ARC_LexerTokenRule_AutomataFn)(ARC_String **string, ARC_Stri
*/
typedef void (* ARC_LexerTokenRule_DestroyAutomataDataFn)(void *automataData);
/**
* @brief a lexer token rule type
*/
@ -59,7 +58,7 @@ typedef struct ARC_LexerTokenRule {
/**
* @brief creates an ARC_Lexer type
*
* @param[out] lexer
* @param[out] lexer ARC_Lexer to create
*/
void ARC_Lexer_Create(ARC_Lexer **lexer);