Remove validate_json

This commit is contained in:
2023-07-01 15:05:41 +01:00
parent ff110ea6e2
commit 10597c0ed7
2 changed files with 2 additions and 36 deletions

View File

@@ -53,13 +53,12 @@ typedef struct {
token_t token;
} lex_result_t;
typedef struct lexer lexer_t;
typedef struct lexer_s lexer_t;
void lexer_init(lexer_t **lexer);
void lexer_free(lexer_t **lexer);
lex_result_t get_next_token(lexer_t *lexer, const char *text);
bool validate_json(char *json);
void print_token(token_t token);
#endif // !LEXER_STATES_H