digraph G {
rankdir=LR;
NULL [label="NULL\ntest_fsm_null()"]
ONE [label="ONE\ntest_fsm_one()"]
TWO [label="TWO"]
foo [label="foo()",shape=box]
a_reset_alloc [label="a_reset_alloc()",shape=box]
test_id_api [label="test_id_api()",shape=box]
a_reset_c_fsm_A_RESET [label="a_reset.c fsm A-RESET",shape=box3d]
NULL->ONE [label="A"]
ONE->TWO [label="B"]
foo->NULL [label="A",style=dotted,arrowhead=halfopen]
foo->ONE [label="B",style=dotted,arrowhead=halfopen]
foo->a_reset_c_fsm_A_RESET [label="-",style=dotted]
a_reset_alloc->NULL [label="-",style=dotted]
a_reset_alloc->a_reset_c_fsm_A_RESET [label="-",style=dotted]
test_id_api->NULL [label="-",style=dotted]
test_id_api->a_reset_c_fsm_A_RESET [label="-",style=dotted]
a_reset_c_fsm_A_RESET->foo [label="-",style=dotted]
a_reset_c_fsm_A_RESET->a_reset_alloc [label="-",style=dotted]
a_reset_c_fsm_A_RESET->test_id_api [label="-",style=dotted]
}
