#include #include "gate.h" #include "parser.h" int main(void) { char test_string[] = "input b \n"; parse_line(test_string); assert(gate_get_input_by_name("b") != NULL); return 0; }