Added structs enums and stubs #t51

This commit is contained in:
Meyer Simon
2025-03-27 16:08:31 -04:00
parent fd39afc9e0
commit 03be62dc19
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,13 @@
void emit_binary_op(char* result, char* op, char* arg1, char* arg2){
return;
}
void emit_unary_op(char* result, char* op, char* arg){
return;
}
void emit_assignment(char* target, char* source){
return;
}
void emit_as_file(FILE * out_file, Instruction * instr_arr){
return;
}