1

Improve program validation (bracket balance)

This commit is contained in:
2024-01-19 00:22:04 +01:00
parent 5af36d220e
commit 5fa2d16ae1
2 changed files with 23 additions and 6 deletions

View File

@ -11,6 +11,6 @@
*/
bool lex_brainfuck_file(const std::string &path, std::string &tokens);
bool token_string_valid(std::string_view tokens);
bool program_valid(const std::string_view tokens);
#endif