Create MAPPING-END.
(event *yaml_event_t)
| 367 | |
| 368 | // Create MAPPING-END. |
| 369 | func yaml_mapping_end_event_initialize(event *yaml_event_t) { |
| 370 | *event = yaml_event_t{ |
| 371 | typ: yaml_MAPPING_END_EVENT, |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | // Destroy an event object. |
| 376 | func yaml_event_delete(event *yaml_event_t) { |