Set the writer error and return false.
(emitter *yaml_emitter_t, problem string)
| 24 | |
| 25 | // Set the writer error and return false. |
| 26 | func yaml_emitter_set_writer_error(emitter *yaml_emitter_t, problem string) bool { |
| 27 | emitter.error = yaml_WRITER_ERROR |
| 28 | emitter.problem = problem |
| 29 | return false |
| 30 | } |
| 31 | |
| 32 | // Flush the output buffer. |
| 33 | func yaml_emitter_flush(emitter *yaml_emitter_t) bool { |
no outgoing calls
no test coverage detected