summaryrefslogtreecommitdiffstats
path: root/src/tape.c
diff options
context:
space:
mode:
authorsijanec <sijanecantonluka@gmail.com>2020-06-09 12:51:59 +0200
committersijanec <sijanecantonluka@gmail.com>2020-06-09 12:51:59 +0200
commita3a6f2a6a649d94b73f2d2d380cbf4f2950298d5 (patch)
tree3013c882f5571399debccbd307767fd7a30b620c /src/tape.c
parentremoved const to surpress warnings (diff)
downloadbverbose-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.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tape.c b/src/tape.c
index eba1478..442ba53 100644
--- a/src/tape.c
+++ b/src/tape.c
@@ -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;