| 130 | } |
| 131 | |
| 132 | VALUE default_write_struct_begin(VALUE protocol, VALUE struct_name) { |
| 133 | rb_funcall(protocol, write_struct_begin_method_id, 1, struct_name); |
| 134 | return Qnil; |
| 135 | } |
| 136 | |
| 137 | VALUE default_write_struct_end(VALUE protocol) { |
| 138 | rb_funcall(protocol, write_struct_end_method_id, 0); |
no outgoing calls
no test coverage detected