1struct exec_list; 2 3bool do_mat_op_to_vec(struct exec_list *instructions); 4 5extern "C" { 6 bool c_do_mat_op_to_vec(struct exec_list *instructions) { 7 return do_mat_op_to_vec(instructions); 8 } 9}; 10
1struct exec_list; 2 3bool do_mat_op_to_vec(struct exec_list *instructions); 4 5extern "C" { 6 bool c_do_mat_op_to_vec(struct exec_list *instructions) { 7 return do_mat_op_to_vec(instructions); 8 } 9}; 10