From a3a6f2a6a649d94b73f2d2d380cbf4f2950298d5 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 9 Jun 2020 12:51:59 +0200 Subject: asdc --- src/tape.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/tape.c') 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; -- cgit v1.2.3