kubernetes/vendor/gopkg.in/yaml.v2/apic.go

func yaml_insert_token(parser *yaml_parser_t, pos int, token *yaml_token_t) {}

// Create a new parser object.
func yaml_parser_initialize(parser *yaml_parser_t) bool {}

// Destroy a parser object.
func yaml_parser_delete(parser *yaml_parser_t) {}

// String read handler.
func yaml_string_read_handler(parser *yaml_parser_t, buffer []byte) (n int, err error) {}

// Reader read handler.
func yaml_reader_read_handler(parser *yaml_parser_t, buffer []byte) (n int, err error) {}

// Set a string input.
func yaml_parser_set_input_string(parser *yaml_parser_t, input []byte) {}

// Set a file input.
func yaml_parser_set_input_reader(parser *yaml_parser_t, r io.Reader) {}

// Set the source encoding.
func yaml_parser_set_encoding(parser *yaml_parser_t, encoding yaml_encoding_t) {}

var disableLineWrapping

// Create a new emitter object.
func yaml_emitter_initialize(emitter *yaml_emitter_t) {}

// Destroy an emitter object.
func yaml_emitter_delete(emitter *yaml_emitter_t) {}

// String write handler.
func yaml_string_write_handler(emitter *yaml_emitter_t, buffer []byte) error {}

// yaml_writer_write_handler uses emitter.output_writer to write the
// emitted text.
func yaml_writer_write_handler(emitter *yaml_emitter_t, buffer []byte) error {}

// Set a string output.
func yaml_emitter_set_output_string(emitter *yaml_emitter_t, output_buffer *[]byte) {}

// Set a file output.
func yaml_emitter_set_output_writer(emitter *yaml_emitter_t, w io.Writer) {}

// Set the output encoding.
func yaml_emitter_set_encoding(emitter *yaml_emitter_t, encoding yaml_encoding_t) {}

// Set the canonical output style.
func yaml_emitter_set_canonical(emitter *yaml_emitter_t, canonical bool) {}

//// Set the indentation increment.
func yaml_emitter_set_indent(emitter *yaml_emitter_t, indent int) {}

// Set the preferred line width.
func yaml_emitter_set_width(emitter *yaml_emitter_t, width int) {}

// Set if unescaped non-ASCII characters are allowed.
func yaml_emitter_set_unicode(emitter *yaml_emitter_t, unicode bool) {}

// Set the preferred line break character.
func yaml_emitter_set_break(emitter *yaml_emitter_t, line_break yaml_break_t) {}

// Create STREAM-START.
func yaml_stream_start_event_initialize(event *yaml_event_t, encoding yaml_encoding_t) {}

// Create STREAM-END.
func yaml_stream_end_event_initialize(event *yaml_event_t) {}

// Create DOCUMENT-START.
func yaml_document_start_event_initialize(
	event *yaml_event_t,
	version_directive *yaml_version_directive_t,
	tag_directives []yaml_tag_directive_t,
	implicit bool,
) {}

// Create DOCUMENT-END.
func yaml_document_end_event_initialize(event *yaml_event_t, implicit bool) {}

// Create SCALAR.
func yaml_scalar_event_initialize(event *yaml_event_t, anchor, tag, value []byte, plain_implicit, quoted_implicit bool, style yaml_scalar_style_t) bool {}

// Create SEQUENCE-START.
func yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_sequence_style_t) bool {}

// Create SEQUENCE-END.
func yaml_sequence_end_event_initialize(event *yaml_event_t) bool {}

// Create MAPPING-START.
func yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_mapping_style_t) {}

// Create MAPPING-END.
func yaml_mapping_end_event_initialize(event *yaml_event_t) {}

// Destroy an event object.
func yaml_event_delete(event *yaml_event_t) {}