diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-06-09 12:51:59 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-06-09 12:51:59 +0200 |
commit | a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5 (patch) | |
tree | 3013c882f5571399debccbd307767fd7a30b620c /src/tape.c | |
parent | removed const to surpress warnings (diff) | |
download | bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar.gz bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar.bz2 bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar.lz bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar.xz bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.tar.zst bverbose-a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5.zip |
Diffstat (limited to 'src/tape.c')
-rw-r--r-- | src/tape.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -29,6 +29,15 @@ int bvr_command_processor(FILE * page_source_file, FILE * temp_output_file) { case 'm': command_handler_output = bvr_handle_move(page_source_file, temp_output_file); break; + case 'f': + command_handler_output = bvr_handle_if(page_source_file, temp_output_file); + break; + case '=': + command_handler_output = bvr_handle_equals(page_source_file, temp_output_file); + break; + case '"': + command_handler_output = bvr_handle_string(page_source_file, temp_output_file); + break; case 'u': command_handler_output = bvr_handle_substring(page_source_file, temp_output_file); break; |