libsheepy
Data Structures | Macros | Functions
yaml_private.h File Reference
#include "ymlConfig.h"
#include "yaml.h"
#include <assert.h>
#include <limits.h>
#include <stddef.h>
Include dependency graph for yaml_private.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  yaml_string_t
 

Macros

#define INPUT_RAW_BUFFER_SIZE   16384
 
#define INPUT_BUFFER_SIZE   (INPUT_RAW_BUFFER_SIZE*3)
 
#define OUTPUT_BUFFER_SIZE   16384
 
#define OUTPUT_RAW_BUFFER_SIZE   (OUTPUT_BUFFER_SIZE*2+2)
 
#define MAX_FILE_SIZE   (~(size_t)0 / 2)
 
#define INITIAL_STACK_SIZE   16
 
#define INITIAL_QUEUE_SIZE   16
 
#define INITIAL_STRING_SIZE   16
 
#define BUFFER_INIT(context, buffer, size)
 
#define BUFFER_DEL(context, buffer)
 
#define NULL_STRING   { NULL, NULL, NULL }
 
#define STRING(string, length)   { (string), (string)+(length), (string) }
 
#define STRING_ASSIGN(value, string, length)
 
#define STRING_INIT(context, string, size)
 
#define STRING_DEL(context, string)
 
#define STRING_EXTEND(context, string)
 
#define CLEAR(context, string)
 
#define JOIN(context, string_a, string_b)
 
#define CHECK_AT(string, octet, offset)   ((string).pointer[offset] == (yaml_char_t)(octet))
 
#define CHECK(string, octet)   (CHECK_AT((string),(octet),0))
 
#define IS_ALPHA_AT(string, offset)
 
#define IS_ALPHA(string)   IS_ALPHA_AT((string),0)
 
#define IS_DIGIT_AT(string, offset)
 
#define IS_DIGIT(string)   IS_DIGIT_AT((string),0)
 
#define AS_DIGIT_AT(string, offset)   ((string).pointer[offset] - (yaml_char_t) '0')
 
#define AS_DIGIT(string)   AS_DIGIT_AT((string),0)
 
#define IS_HEX_AT(string, offset)
 
#define IS_HEX(string)   IS_HEX_AT((string),0)
 
#define AS_HEX_AT(string, offset)
 
#define AS_HEX(string)   AS_HEX_AT((string),0)
 
#define IS_ASCII_AT(string, offset)   ((string).pointer[offset] <= (yaml_char_t) '\x7F')
 
#define IS_ASCII(string)   IS_ASCII_AT((string),0)
 
#define IS_PRINTABLE_AT(string, offset)
 
#define IS_PRINTABLE(string)   IS_PRINTABLE_AT((string),0)
 
#define IS_Z_AT(string, offset)   CHECK_AT((string),'\0',(offset))
 
#define IS_Z(string)   IS_Z_AT((string),0)
 
#define IS_BOM_AT(string, offset)
 
#define IS_BOM(string)   IS_BOM_AT(string,0)
 
#define IS_SPACE_AT(string, offset)   CHECK_AT((string),' ',(offset))
 
#define IS_SPACE(string)   IS_SPACE_AT((string),0)
 
#define IS_TAB_AT(string, offset)   CHECK_AT((string),'\t',(offset))
 
#define IS_TAB(string)   IS_TAB_AT((string),0)
 
#define IS_BLANK_AT(string, offset)   (IS_SPACE_AT((string),(offset)) || IS_TAB_AT((string),(offset)))
 
#define IS_BLANK(string)   IS_BLANK_AT((string),0)
 
#define IS_BREAK_AT(string, offset)
 
#define IS_BREAK(string)   IS_BREAK_AT((string),0)
 
#define IS_CRLF_AT(string, offset)   (CHECK_AT((string),'\r',(offset)) && CHECK_AT((string),'\n',(offset)+1))
 
#define IS_CRLF(string)   IS_CRLF_AT((string),0)
 
#define IS_BREAKZ_AT(string, offset)   (IS_BREAK_AT((string),(offset)) || IS_Z_AT((string),(offset)))
 
#define IS_BREAKZ(string)   IS_BREAKZ_AT((string),0)
 
#define IS_SPACEZ_AT(string, offset)   (IS_SPACE_AT((string),(offset)) || IS_BREAKZ_AT((string),(offset)))
 
#define IS_SPACEZ(string)   IS_SPACEZ_AT((string),0)
 
#define IS_BLANKZ_AT(string, offset)   (IS_BLANK_AT((string),(offset)) || IS_BREAKZ_AT((string),(offset)))
 
#define IS_BLANKZ(string)   IS_BLANKZ_AT((string),0)
 
#define WIDTH_AT(string, offset)
 
#define WIDTH(string)   WIDTH_AT((string),0)
 
#define MOVE(string)   ((string).pointer += WIDTH((string)))
 
#define COPY(string_a, string_b)
 
#define STACK_INIT(context, stack, type)
 
#define STACK_DEL(context, stack)
 
#define STACK_EMPTY(context, stack)   ((stack).start == (stack).top)
 
#define STACK_LIMIT(context, stack, size)
 
#define PUSH(context, stack, value)
 
#define POP(context, stack)   (*(--(stack).top))
 
#define QUEUE_INIT(context, queue, size, type)
 
#define QUEUE_DEL(context, queue)
 
#define QUEUE_EMPTY(context, queue)   ((queue).head == (queue).tail)
 
#define ENQUEUE(context, queue, value)
 
#define DEQUEUE(context, queue)   (*((queue).head++))
 
#define QUEUE_INSERT(context, queue, index, value)
 
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
 
#define STREAM_START_TOKEN_INIT(token, token_encoding, start_mark, end_mark)
 
#define STREAM_END_TOKEN_INIT(token, start_mark, end_mark)   (TOKEN_INIT((token),YAML_STREAM_END_TOKEN,(start_mark),(end_mark)))
 
#define ALIAS_TOKEN_INIT(token, token_value, start_mark, end_mark)
 
#define ANCHOR_TOKEN_INIT(token, token_value, start_mark, end_mark)
 
#define TAG_TOKEN_INIT(token, token_handle, token_suffix, start_mark, end_mark)
 
#define SCALAR_TOKEN_INIT(token, token_value, token_length, token_style, start_mark, end_mark)
 
#define VERSION_DIRECTIVE_TOKEN_INIT(token, token_major, token_minor, start_mark, end_mark)
 
#define TAG_DIRECTIVE_TOKEN_INIT(token, token_handle, token_prefix, start_mark, end_mark)
 
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
 
#define STREAM_START_EVENT_INIT(event, event_encoding, start_mark, end_mark)
 
#define STREAM_END_EVENT_INIT(event, start_mark, end_mark)   (EVENT_INIT((event),YAML_STREAM_END_EVENT,(start_mark),(end_mark)))
 
#define DOCUMENT_START_EVENT_INIT(event, event_version_directive, event_tag_directives_start, event_tag_directives_end, event_implicit, start_mark, end_mark)
 
#define DOCUMENT_END_EVENT_INIT(event, event_implicit, start_mark, end_mark)
 
#define ALIAS_EVENT_INIT(event, event_anchor, start_mark, end_mark)
 
#define SCALAR_EVENT_INIT(event, event_anchor, event_tag, event_value, event_length, event_plain_implicit, event_quoted_implicit, event_style, start_mark, end_mark)
 
#define SEQUENCE_START_EVENT_INIT(event, event_anchor, event_tag, event_implicit, event_style, start_mark, end_mark)
 
#define SEQUENCE_END_EVENT_INIT(event, start_mark, end_mark)   (EVENT_INIT((event),YAML_SEQUENCE_END_EVENT,(start_mark),(end_mark)))
 
#define MAPPING_START_EVENT_INIT(event, event_anchor, event_tag, event_implicit, event_style, start_mark, end_mark)
 
#define MAPPING_END_EVENT_INIT(event, start_mark, end_mark)   (EVENT_INIT((event),YAML_MAPPING_END_EVENT,(start_mark),(end_mark)))
 
#define DOCUMENT_INIT(document, document_nodes_start, document_nodes_end, document_version_directive, document_tag_directives_start, document_tag_directives_end, document_start_implicit, document_end_implicit, document_start_mark, document_end_mark)
 
#define NODE_INIT(node, node_type, node_tag, node_start_mark, node_end_mark)
 
#define SCALAR_NODE_INIT(node, node_tag, node_value, node_length, node_style, start_mark, end_mark)
 
#define SEQUENCE_NODE_INIT(node, node_tag, node_items_start, node_items_end, node_style, start_mark, end_mark)
 
#define MAPPING_NODE_INIT(node, node_tag, node_pairs_start, node_pairs_end, node_style, start_mark, end_mark)
 
#define __attribute__unused__
 
#define SHIM(a)   /*@unused@*/ a __attribute__unused__
 
#define UNUSED_PARAM(a)   /*@-noeffect*/if (0) (void)(a)/*@=noeffect*/;
 
#define YAML_MALLOC_STATIC(type)   (type*)yaml_malloc(sizeof(type))
 
#define YAML_MALLOC(size)   (yaml_char_t *)yaml_malloc(size)
 

Functions

 yaml_malloc (size_t size)
 
 yaml_realloc (void *ptr, size_t size)
 
 yaml_free (void *ptr)
 
 yaml_strdup (const yaml_char_t *)
 
 yaml_parser_update_buffer (yaml_parser_t *parser, size_t length)
 
 yaml_parser_fetch_more_tokens (yaml_parser_t *parser)
 
 yaml_string_extend (yaml_char_t **start, yaml_char_t **pointer, yaml_char_t **end)
 
 yaml_string_join (yaml_char_t **a_start, yaml_char_t **a_pointer, yaml_char_t **a_end, yaml_char_t **b_start, yaml_char_t **b_pointer, yaml_char_t **b_end)
 
 yaml_stack_extend (void **start, void **top, void **end)
 
 yaml_queue_extend (void **start, void **head, void **tail, void **end)
 

Macro Definition Documentation

◆ INPUT_RAW_BUFFER_SIZE

#define INPUT_RAW_BUFFER_SIZE   16384

Definition at line 43 of file yaml_private.h.

◆ INPUT_BUFFER_SIZE

#define INPUT_BUFFER_SIZE   (INPUT_RAW_BUFFER_SIZE*3)

Definition at line 51 of file yaml_private.h.

◆ OUTPUT_BUFFER_SIZE

#define OUTPUT_BUFFER_SIZE   16384

Definition at line 57 of file yaml_private.h.

◆ OUTPUT_RAW_BUFFER_SIZE

#define OUTPUT_RAW_BUFFER_SIZE   (OUTPUT_BUFFER_SIZE*2+2)

Definition at line 65 of file yaml_private.h.

◆ MAX_FILE_SIZE

#define MAX_FILE_SIZE   (~(size_t)0 / 2)

Definition at line 75 of file yaml_private.h.

◆ INITIAL_STACK_SIZE

#define INITIAL_STACK_SIZE   16

Definition at line 82 of file yaml_private.h.

◆ INITIAL_QUEUE_SIZE

#define INITIAL_QUEUE_SIZE   16

Definition at line 83 of file yaml_private.h.

◆ INITIAL_STRING_SIZE

#define INITIAL_STRING_SIZE   16

Definition at line 84 of file yaml_private.h.

◆ BUFFER_INIT

#define BUFFER_INIT (   context,
  buffer,
  size 
)
Value:
(((buffer).start = (yaml_char_t *)yaml_malloc(size)) ? \
((buffer).last = (buffer).pointer = (buffer).start, \
(buffer).end = (buffer).start+(size), \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_malloc(size_t size)
Definition: ymlApi.c:31
unsigned char yaml_char_t
The character type (UTF-8 octet).
Definition: yaml.h:80

Definition at line 90 of file yaml_private.h.

◆ BUFFER_DEL

#define BUFFER_DEL (   context,
  buffer 
)
Value:
(yaml_free((buffer).start), \
(buffer).start = (buffer).pointer = (buffer).end = 0)
yaml_free(void *ptr)
Definition: ymlApi.c:51

Definition at line 98 of file yaml_private.h.

◆ NULL_STRING

#define NULL_STRING   { NULL, NULL, NULL }

Definition at line 121 of file yaml_private.h.

◆ STRING

#define STRING (   string,
  length 
)    { (string), (string)+(length), (string) }

Definition at line 123 of file yaml_private.h.

◆ STRING_ASSIGN

#define STRING_ASSIGN (   value,
  string,
  length 
)
Value:
((value).start = (string), \
(value).end = (string)+(length), \
(value).pointer = (string))
in value value

Definition at line 125 of file yaml_private.h.

◆ STRING_INIT

#define STRING_INIT (   context,
  string,
  size 
)
Value:
(((string).start = YAML_MALLOC(size)) ? \
((string).pointer = (string).start, \
(string).end = (string).start+(size), \
memset((string).start, 0, (size)), \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
#define YAML_MALLOC(size)
Definition: yaml_private.h:682

Definition at line 130 of file yaml_private.h.

◆ STRING_DEL

#define STRING_DEL (   context,
  string 
)
Value:
(yaml_free((string).start), \
(string).start = (string).pointer = (string).end = 0)
yaml_free(void *ptr)
Definition: ymlApi.c:51

Definition at line 139 of file yaml_private.h.

◆ STRING_EXTEND

#define STRING_EXTEND (   context,
  string 
)
Value:
((((string).pointer+5 < (string).end) \
|| yaml_string_extend(&(string).start, \
&(string).pointer, &(string).end)) ? \
1 : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_string_extend(yaml_char_t **start, yaml_char_t **pointer, yaml_char_t **end)
Definition: ymlApi.c:74

Definition at line 143 of file yaml_private.h.

◆ CLEAR

#define CLEAR (   context,
  string 
)
Value:
((string).pointer = (string).start, \
memset((string).start, 0, (string).end-(string).start))

Definition at line 151 of file yaml_private.h.

◆ JOIN

#define JOIN (   context,
  string_a,
  string_b 
)
Value:
((yaml_string_join(&(string_a).start, &(string_a).pointer, \
&(string_a).end, &(string_b).start, \
&(string_b).pointer, &(string_b).end)) ? \
((string_b).pointer = (string_b).start, \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_string_join(yaml_char_t **a_start, yaml_char_t **a_pointer, yaml_char_t **a_end, yaml_char_t **b_start, yaml_char_t **b_pointer, yaml_char_t **b_end)

Definition at line 155 of file yaml_private.h.

◆ CHECK_AT

#define CHECK_AT (   string,
  octet,
  offset 
)    ((string).pointer[offset] == (yaml_char_t)(octet))

Definition at line 172 of file yaml_private.h.

◆ CHECK

#define CHECK (   string,
  octet 
)    (CHECK_AT((string),(octet),0))

Definition at line 179 of file yaml_private.h.

◆ IS_ALPHA_AT

#define IS_ALPHA_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] >= (yaml_char_t) '0' && \
(string).pointer[offset] <= (yaml_char_t) '9') || \
((string).pointer[offset] >= (yaml_char_t) 'A' && \
(string).pointer[offset] <= (yaml_char_t) 'Z') || \
((string).pointer[offset] >= (yaml_char_t) 'a' && \
(string).pointer[offset] <= (yaml_char_t) 'z') || \
(string).pointer[offset] == '_' || \
(string).pointer[offset] == '-')
unsigned char yaml_char_t
The character type (UTF-8 octet).
Definition: yaml.h:80

Definition at line 186 of file yaml_private.h.

◆ IS_ALPHA

#define IS_ALPHA (   string)    IS_ALPHA_AT((string),0)

Definition at line 196 of file yaml_private.h.

◆ IS_DIGIT_AT

#define IS_DIGIT_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] >= (yaml_char_t) '0' && \
(string).pointer[offset] <= (yaml_char_t) '9'))
unsigned char yaml_char_t
The character type (UTF-8 octet).
Definition: yaml.h:80

Definition at line 202 of file yaml_private.h.

◆ IS_DIGIT

#define IS_DIGIT (   string)    IS_DIGIT_AT((string),0)

Definition at line 206 of file yaml_private.h.

◆ AS_DIGIT_AT

#define AS_DIGIT_AT (   string,
  offset 
)    ((string).pointer[offset] - (yaml_char_t) '0')

Definition at line 212 of file yaml_private.h.

◆ AS_DIGIT

#define AS_DIGIT (   string)    AS_DIGIT_AT((string),0)

Definition at line 215 of file yaml_private.h.

◆ IS_HEX_AT

#define IS_HEX_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] >= (yaml_char_t) '0' && \
(string).pointer[offset] <= (yaml_char_t) '9') || \
((string).pointer[offset] >= (yaml_char_t) 'A' && \
(string).pointer[offset] <= (yaml_char_t) 'F') || \
((string).pointer[offset] >= (yaml_char_t) 'a' && \
(string).pointer[offset] <= (yaml_char_t) 'f'))
unsigned char yaml_char_t
The character type (UTF-8 octet).
Definition: yaml.h:80

Definition at line 221 of file yaml_private.h.

◆ IS_HEX

#define IS_HEX (   string)    IS_HEX_AT((string),0)

Definition at line 229 of file yaml_private.h.

◆ AS_HEX_AT

#define AS_HEX_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] >= (yaml_char_t) 'A' && \
(string).pointer[offset] <= (yaml_char_t) 'F') ? \
((string).pointer[offset] - (yaml_char_t) 'A' + 10) : \
((string).pointer[offset] >= (yaml_char_t) 'a' && \
(string).pointer[offset] <= (yaml_char_t) 'f') ? \
((string).pointer[offset] - (yaml_char_t) 'a' + 10) : \
((string).pointer[offset] - (yaml_char_t) '0'))
unsigned char yaml_char_t
The character type (UTF-8 octet).
Definition: yaml.h:80

Definition at line 235 of file yaml_private.h.

◆ AS_HEX

#define AS_HEX (   string)    AS_HEX_AT((string),0)

Definition at line 244 of file yaml_private.h.

◆ IS_ASCII_AT

#define IS_ASCII_AT (   string,
  offset 
)    ((string).pointer[offset] <= (yaml_char_t) '\x7F')

Definition at line 250 of file yaml_private.h.

◆ IS_ASCII

#define IS_ASCII (   string)    IS_ASCII_AT((string),0)

Definition at line 253 of file yaml_private.h.

◆ IS_PRINTABLE_AT

#define IS_PRINTABLE_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] == 0x0A) /* . == #x0A */ \
|| ((string).pointer[offset] >= 0x20 /* #x20 <= . <= #x7E */ \
&& (string).pointer[offset] <= 0x7E) \
|| ((string).pointer[offset] == 0xC2 /* #0xA0 <= . <= #xD7FF */ \
&& (string).pointer[offset+1] >= 0xA0) \
|| ((string).pointer[offset] > 0xC2 \
&& (string).pointer[offset] < 0xED) \
|| ((string).pointer[offset] == 0xED \
&& (string).pointer[offset+1] < 0xA0) \
|| ((string).pointer[offset] == 0xEE) \
|| ((string).pointer[offset] == 0xEF /* #xE000 <= . <= #xFFFD */ \
&& !((string).pointer[offset+1] == 0xBB /* && . != #xFEFF */ \
&& (string).pointer[offset+2] == 0xBF) \
&& !((string).pointer[offset+1] == 0xBF \
&& ((string).pointer[offset+2] == 0xBE \
|| (string).pointer[offset+2] == 0xBF))))

Definition at line 259 of file yaml_private.h.

◆ IS_PRINTABLE

#define IS_PRINTABLE (   string)    IS_PRINTABLE_AT((string),0)

Definition at line 277 of file yaml_private.h.

◆ IS_Z_AT

#define IS_Z_AT (   string,
  offset 
)    CHECK_AT((string),'\0',(offset))

Definition at line 283 of file yaml_private.h.

◆ IS_Z

#define IS_Z (   string)    IS_Z_AT((string),0)

Definition at line 285 of file yaml_private.h.

◆ IS_BOM_AT

#define IS_BOM_AT (   string,
  offset 
)
Value:
(CHECK_AT((string),'\xEF',(offset)) \
&& CHECK_AT((string),'\xBB',(offset)+1) \
&& CHECK_AT((string),'\xBF',(offset)+2)) /* BOM (#xFEFF) */
#define CHECK_AT(string, octet, offset)
Definition: yaml_private.h:172

Definition at line 291 of file yaml_private.h.

◆ IS_BOM

#define IS_BOM (   string)    IS_BOM_AT(string,0)

Definition at line 296 of file yaml_private.h.

◆ IS_SPACE_AT

#define IS_SPACE_AT (   string,
  offset 
)    CHECK_AT((string),' ',(offset))

Definition at line 302 of file yaml_private.h.

◆ IS_SPACE

#define IS_SPACE (   string)    IS_SPACE_AT((string),0)

Definition at line 304 of file yaml_private.h.

◆ IS_TAB_AT

#define IS_TAB_AT (   string,
  offset 
)    CHECK_AT((string),'\t',(offset))

Definition at line 310 of file yaml_private.h.

◆ IS_TAB

#define IS_TAB (   string)    IS_TAB_AT((string),0)

Definition at line 312 of file yaml_private.h.

◆ IS_BLANK_AT

#define IS_BLANK_AT (   string,
  offset 
)    (IS_SPACE_AT((string),(offset)) || IS_TAB_AT((string),(offset)))

Definition at line 318 of file yaml_private.h.

◆ IS_BLANK

#define IS_BLANK (   string)    IS_BLANK_AT((string),0)

Definition at line 321 of file yaml_private.h.

◆ IS_BREAK_AT

#define IS_BREAK_AT (   string,
  offset 
)
Value:
(CHECK_AT((string),'\r',(offset)) /* CR (#xD)*/ \
|| CHECK_AT((string),'\n',(offset)) /* LF (#xA) */ \
|| (CHECK_AT((string),'\xC2',(offset)) \
&& CHECK_AT((string),'\x85',(offset)+1)) /* NEL (#x85) */ \
|| (CHECK_AT((string),'\xE2',(offset)) \
&& CHECK_AT((string),'\x80',(offset)+1) \
&& CHECK_AT((string),'\xA8',(offset)+2)) /* LS (#x2028) */ \
|| (CHECK_AT((string),'\xE2',(offset)) \
&& CHECK_AT((string),'\x80',(offset)+1) \
&& CHECK_AT((string),'\xA9',(offset)+2))) /* PS (#x2029) */
#define CHECK_AT(string, octet, offset)
Definition: yaml_private.h:172

Definition at line 327 of file yaml_private.h.

◆ IS_BREAK

#define IS_BREAK (   string)    IS_BREAK_AT((string),0)

Definition at line 339 of file yaml_private.h.

◆ IS_CRLF_AT

#define IS_CRLF_AT (   string,
  offset 
)    (CHECK_AT((string),'\r',(offset)) && CHECK_AT((string),'\n',(offset)+1))

Definition at line 341 of file yaml_private.h.

◆ IS_CRLF

#define IS_CRLF (   string)    IS_CRLF_AT((string),0)

Definition at line 344 of file yaml_private.h.

◆ IS_BREAKZ_AT

#define IS_BREAKZ_AT (   string,
  offset 
)    (IS_BREAK_AT((string),(offset)) || IS_Z_AT((string),(offset)))

Definition at line 350 of file yaml_private.h.

◆ IS_BREAKZ

#define IS_BREAKZ (   string)    IS_BREAKZ_AT((string),0)

Definition at line 353 of file yaml_private.h.

◆ IS_SPACEZ_AT

#define IS_SPACEZ_AT (   string,
  offset 
)    (IS_SPACE_AT((string),(offset)) || IS_BREAKZ_AT((string),(offset)))

Definition at line 359 of file yaml_private.h.

◆ IS_SPACEZ

#define IS_SPACEZ (   string)    IS_SPACEZ_AT((string),0)

Definition at line 362 of file yaml_private.h.

◆ IS_BLANKZ_AT

#define IS_BLANKZ_AT (   string,
  offset 
)    (IS_BLANK_AT((string),(offset)) || IS_BREAKZ_AT((string),(offset)))

Definition at line 368 of file yaml_private.h.

◆ IS_BLANKZ

#define IS_BLANKZ (   string)    IS_BLANKZ_AT((string),0)

Definition at line 371 of file yaml_private.h.

◆ WIDTH_AT

#define WIDTH_AT (   string,
  offset 
)
Value:
(((string).pointer[offset] & 0x80) == 0x00 ? 1 : \
((string).pointer[offset] & 0xE0) == 0xC0 ? 2 : \
((string).pointer[offset] & 0xF0) == 0xE0 ? 3 : \
((string).pointer[offset] & 0xF8) == 0xF0 ? 4 : 0)

Definition at line 377 of file yaml_private.h.

◆ WIDTH

#define WIDTH (   string)    WIDTH_AT((string),0)

Definition at line 383 of file yaml_private.h.

◆ MOVE

#define MOVE (   string)    ((string).pointer += WIDTH((string)))

Definition at line 389 of file yaml_private.h.

◆ COPY

#define COPY (   string_a,
  string_b 
)
Value:
((*(string_b).pointer & 0x80) == 0x00 ? \
(*((string_a).pointer++) = *((string_b).pointer++)) : \
(*(string_b).pointer & 0xE0) == 0xC0 ? \
(*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++)) : \
(*(string_b).pointer & 0xF0) == 0xE0 ? \
(*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++)) : \
(*(string_b).pointer & 0xF8) == 0xF0 ? \
(*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++), \
*((string_a).pointer++) = *((string_b).pointer++)) : 0)

Definition at line 395 of file yaml_private.h.

◆ STACK_INIT

#define STACK_INIT (   context,
  stack,
  type 
)
Value:
(((stack).start = (type)yaml_malloc(INITIAL_STACK_SIZE*sizeof(*(stack).start))) ? \
((stack).top = (stack).start, \
(stack).end = (stack).start+INITIAL_STACK_SIZE, \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_malloc(size_t size)
Definition: ymlApi.c:31
#define INITIAL_STACK_SIZE
Definition: yaml_private.h:82

Definition at line 421 of file yaml_private.h.

◆ STACK_DEL

#define STACK_DEL (   context,
  stack 
)
Value:
(yaml_free((stack).start), \
(stack).start = (stack).top = (stack).end = 0)
yaml_free(void *ptr)
Definition: ymlApi.c:51

Definition at line 429 of file yaml_private.h.

◆ STACK_EMPTY

#define STACK_EMPTY (   context,
  stack 
)    ((stack).start == (stack).top)

Definition at line 433 of file yaml_private.h.

◆ STACK_LIMIT

#define STACK_LIMIT (   context,
  stack,
  size 
)
Value:
((stack).top - (stack).start < (size) ? \
1 : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129

Definition at line 436 of file yaml_private.h.

◆ PUSH

#define PUSH (   context,
  stack,
  value 
)
Value:
(((stack).top != (stack).end \
|| yaml_stack_extend((void **)&(stack).start, \
(void **)&(stack).top, (void **)&(stack).end)) ? \
(*((stack).top++) = value, \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_stack_extend(void **start, void **top, void **end)
Definition: ymlApi.c:119
in value value

Definition at line 442 of file yaml_private.h.

◆ POP

#define POP (   context,
  stack 
)    (*(--(stack).top))

Definition at line 451 of file yaml_private.h.

◆ QUEUE_INIT

#define QUEUE_INIT (   context,
  queue,
  size,
  type 
)
Value:
(((queue).start = (type)yaml_malloc((size)*sizeof(*(queue).start))) ? \
((queue).head = (queue).tail = (queue).start, \
(queue).end = (queue).start+(size), \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
yaml_malloc(size_t size)
Definition: ymlApi.c:31

Definition at line 454 of file yaml_private.h.

◆ QUEUE_DEL

#define QUEUE_DEL (   context,
  queue 
)
Value:
(yaml_free((queue).start), \
(queue).start = (queue).head = (queue).tail = (queue).end = 0)
yaml_free(void *ptr)
Definition: ymlApi.c:51

Definition at line 462 of file yaml_private.h.

◆ QUEUE_EMPTY

#define QUEUE_EMPTY (   context,
  queue 
)    ((queue).head == (queue).tail)

Definition at line 466 of file yaml_private.h.

◆ ENQUEUE

#define ENQUEUE (   context,
  queue,
  value 
)
Value:
(((queue).tail != (queue).end \
|| yaml_queue_extend((void **)&(queue).start, (void **)&(queue).head, \
(void **)&(queue).tail, (void **)&(queue).end)) ? \
(*((queue).tail++) = value, \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
in value value
yaml_queue_extend(void **start, void **head, void **tail, void **end)
Definition: ymlApi.c:142

Definition at line 469 of file yaml_private.h.

◆ DEQUEUE

#define DEQUEUE (   context,
  queue 
)    (*((queue).head++))

Definition at line 478 of file yaml_private.h.

◆ QUEUE_INSERT

#define QUEUE_INSERT (   context,
  queue,
  index,
  value 
)
Value:
(((queue).tail != (queue).end \
|| yaml_queue_extend((void **)&(queue).start, (void **)&(queue).head, \
(void **)&(queue).tail, (void **)&(queue).end)) ? \
(memmove((queue).head+(index)+1,(queue).head+(index), \
((queue).tail-(queue).head-(index))*sizeof(*(queue).start)), \
*((queue).head+(index)) = value, \
(queue).tail++, \
1) : \
((context)->error = YAML_MEMORY_ERROR, \
0))
Cannot allocate or reallocate a block of memory.
Definition: yaml.h:129
in value value
yaml_queue_extend(void **start, void **head, void **tail, void **end)
Definition: ymlApi.c:142

Definition at line 481 of file yaml_private.h.

◆ TOKEN_INIT

#define TOKEN_INIT (   token,
  token_type,
  token_start_mark,
  token_end_mark 
)
Value:
(memset(&(token), 0, sizeof(yaml_token_t)), \
(token).type = (token_type), \
(token).start_mark = (token_start_mark), \
(token).end_mark = (token_end_mark))
The token structure.
Definition: yaml.h:269

Definition at line 497 of file yaml_private.h.

◆ STREAM_START_TOKEN_INIT

#define STREAM_START_TOKEN_INIT (   token,
  token_encoding,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_STREAM_START_TOKEN,(start_mark),(end_mark)), \
(token).data.stream_start.encoding = (token_encoding))
char data[7]
Definition: libsheepy.c:19690
A STREAM-START token.
Definition: yaml.h:220
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497

Definition at line 503 of file yaml_private.h.

◆ STREAM_END_TOKEN_INIT

#define STREAM_END_TOKEN_INIT (   token,
  start_mark,
  end_mark 
)    (TOKEN_INIT((token),YAML_STREAM_END_TOKEN,(start_mark),(end_mark)))

Definition at line 507 of file yaml_private.h.

◆ ALIAS_TOKEN_INIT

#define ALIAS_TOKEN_INIT (   token,
  token_value,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_ALIAS_TOKEN,(start_mark),(end_mark)), \
(token).data.alias.value = (token_value))
char data[7]
Definition: libsheepy.c:19690
An ALIAS token.
Definition: yaml.h:259
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497

Definition at line 510 of file yaml_private.h.

◆ ANCHOR_TOKEN_INIT

#define ANCHOR_TOKEN_INIT (   token,
  token_value,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_ANCHOR_TOKEN,(start_mark),(end_mark)), \
(token).data.anchor.value = (token_value))
char data[7]
Definition: libsheepy.c:19690
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497
An ANCHOR token.
Definition: yaml.h:261

Definition at line 514 of file yaml_private.h.

◆ TAG_TOKEN_INIT

#define TAG_TOKEN_INIT (   token,
  token_handle,
  token_suffix,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_TAG_TOKEN,(start_mark),(end_mark)), \
(token).data.tag.handle = (token_handle), \
(token).data.tag.suffix = (token_suffix))
char data[7]
Definition: libsheepy.c:19690
A TAG token.
Definition: yaml.h:263
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497

Definition at line 518 of file yaml_private.h.

◆ SCALAR_TOKEN_INIT

#define SCALAR_TOKEN_INIT (   token,
  token_value,
  token_length,
  token_style,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_SCALAR_TOKEN,(start_mark),(end_mark)), \
(token).data.scalar.value = (token_value), \
(token).data.scalar.length = (token_length), \
(token).data.scalar.style = (token_style))
char data[7]
Definition: libsheepy.c:19690
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497
A SCALAR token.
Definition: yaml.h:265

Definition at line 523 of file yaml_private.h.

◆ VERSION_DIRECTIVE_TOKEN_INIT

#define VERSION_DIRECTIVE_TOKEN_INIT (   token,
  token_major,
  token_minor,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_VERSION_DIRECTIVE_TOKEN,(start_mark),(end_mark)), \
(token).data.version_directive.major = (token_major), \
(token).data.version_directive.minor = (token_minor))
char data[7]
Definition: libsheepy.c:19690
A VERSION-DIRECTIVE token.
Definition: yaml.h:225
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497

Definition at line 529 of file yaml_private.h.

◆ TAG_DIRECTIVE_TOKEN_INIT

#define TAG_DIRECTIVE_TOKEN_INIT (   token,
  token_handle,
  token_prefix,
  start_mark,
  end_mark 
)
Value:
(TOKEN_INIT((token),YAML_TAG_DIRECTIVE_TOKEN,(start_mark),(end_mark)), \
(token).data.tag_directive.handle = (token_handle), \
(token).data.tag_directive.prefix = (token_prefix))
char data[7]
Definition: libsheepy.c:19690
#define TOKEN_INIT(token, token_type, token_start_mark, token_end_mark)
Definition: yaml_private.h:497
A TAG-DIRECTIVE token.
Definition: yaml.h:227

Definition at line 534 of file yaml_private.h.

◆ EVENT_INIT

#define EVENT_INIT (   event,
  event_type,
  event_start_mark,
  event_end_mark 
)
Value:
(memset(&(event), 0, sizeof(yaml_event_t)), \
(event).type = (event_type), \
(event).start_mark = (event_start_mark), \
(event).end_mark = (event_end_mark))
The event structure.
Definition: yaml.h:386

Definition at line 543 of file yaml_private.h.

◆ STREAM_START_EVENT_INIT

#define STREAM_START_EVENT_INIT (   event,
  event_encoding,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_STREAM_START_EVENT,(start_mark),(end_mark)), \
(event).data.stream_start.encoding = (event_encoding))
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543
A STREAM-START event.
Definition: yaml.h:360

Definition at line 549 of file yaml_private.h.

◆ STREAM_END_EVENT_INIT

#define STREAM_END_EVENT_INIT (   event,
  start_mark,
  end_mark 
)    (EVENT_INIT((event),YAML_STREAM_END_EVENT,(start_mark),(end_mark)))

Definition at line 553 of file yaml_private.h.

◆ DOCUMENT_START_EVENT_INIT

#define DOCUMENT_START_EVENT_INIT (   event,
  event_version_directive,
  event_tag_directives_start,
  event_tag_directives_end,
  event_implicit,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_DOCUMENT_START_EVENT,(start_mark),(end_mark)), \
(event).data.document_start.version_directive = (event_version_directive), \
(event).data.document_start.tag_directives.start = (event_tag_directives_start), \
(event).data.document_start.tag_directives.end = (event_tag_directives_end), \
(event).data.document_start.implicit = (event_implicit))
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543
A DOCUMENT-START event.
Definition: yaml.h:365

Definition at line 556 of file yaml_private.h.

◆ DOCUMENT_END_EVENT_INIT

#define DOCUMENT_END_EVENT_INIT (   event,
  event_implicit,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_DOCUMENT_END_EVENT,(start_mark),(end_mark)), \
(event).data.document_end.implicit = (event_implicit))
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543
A DOCUMENT-END event.
Definition: yaml.h:367

Definition at line 564 of file yaml_private.h.

◆ ALIAS_EVENT_INIT

#define ALIAS_EVENT_INIT (   event,
  event_anchor,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_ALIAS_EVENT,(start_mark),(end_mark)), \
(event).data.alias.anchor = (event_anchor))
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543
An ALIAS event.
Definition: yaml.h:370

Definition at line 568 of file yaml_private.h.

◆ SCALAR_EVENT_INIT

#define SCALAR_EVENT_INIT (   event,
  event_anchor,
  event_tag,
  event_value,
  event_length,
  event_plain_implicit,
  event_quoted_implicit,
  event_style,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_SCALAR_EVENT,(start_mark),(end_mark)), \
(event).data.scalar.anchor = (event_anchor), \
(event).data.scalar.tag = (event_tag), \
(event).data.scalar.value = (event_value), \
(event).data.scalar.length = (event_length), \
(event).data.scalar.plain_implicit = (event_plain_implicit), \
(event).data.scalar.quoted_implicit = (event_quoted_implicit), \
(event).data.scalar.style = (event_style))
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543
A SCALAR event.
Definition: yaml.h:372

Definition at line 572 of file yaml_private.h.

◆ SEQUENCE_START_EVENT_INIT

#define SEQUENCE_START_EVENT_INIT (   event,
  event_anchor,
  event_tag,
  event_implicit,
  event_style,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_SEQUENCE_START_EVENT,(start_mark),(end_mark)), \
(event).data.sequence_start.anchor = (event_anchor), \
(event).data.sequence_start.tag = (event_tag), \
(event).data.sequence_start.implicit = (event_implicit), \
(event).data.sequence_start.style = (event_style))
A SEQUENCE-START event.
Definition: yaml.h:375
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543

Definition at line 583 of file yaml_private.h.

◆ SEQUENCE_END_EVENT_INIT

#define SEQUENCE_END_EVENT_INIT (   event,
  start_mark,
  end_mark 
)    (EVENT_INIT((event),YAML_SEQUENCE_END_EVENT,(start_mark),(end_mark)))

Definition at line 591 of file yaml_private.h.

◆ MAPPING_START_EVENT_INIT

#define MAPPING_START_EVENT_INIT (   event,
  event_anchor,
  event_tag,
  event_implicit,
  event_style,
  start_mark,
  end_mark 
)
Value:
(EVENT_INIT((event),YAML_MAPPING_START_EVENT,(start_mark),(end_mark)), \
(event).data.mapping_start.anchor = (event_anchor), \
(event).data.mapping_start.tag = (event_tag), \
(event).data.mapping_start.implicit = (event_implicit), \
(event).data.mapping_start.style = (event_style))
A MAPPING-START event.
Definition: yaml.h:380
char data[7]
Definition: libsheepy.c:19690
#define EVENT_INIT(event, event_type, event_start_mark, event_end_mark)
Definition: yaml_private.h:543

Definition at line 594 of file yaml_private.h.

◆ MAPPING_END_EVENT_INIT

#define MAPPING_END_EVENT_INIT (   event,
  start_mark,
  end_mark 
)    (EVENT_INIT((event),YAML_MAPPING_END_EVENT,(start_mark),(end_mark)))

Definition at line 602 of file yaml_private.h.

◆ DOCUMENT_INIT

#define DOCUMENT_INIT (   document,
  document_nodes_start,
  document_nodes_end,
  document_version_directive,
  document_tag_directives_start,
  document_tag_directives_end,
  document_start_implicit,
  document_end_implicit,
  document_start_mark,
  document_end_mark 
)
Value:
(memset(&(document), 0, sizeof(yaml_document_t)), \
(document).nodes.start = (document_nodes_start), \
(document).nodes.end = (document_nodes_end), \
(document).nodes.top = (document_nodes_start), \
(document).version_directive = (document_version_directive), \
(document).tag_directives.start = (document_tag_directives_start), \
(document).tag_directives.end = (document_tag_directives_end), \
(document).start_implicit = (document_start_implicit), \
(document).end_implicit = (document_end_implicit), \
(document).start_mark = (document_start_mark), \
(document).end_mark = (document_end_mark))
The document structure.
Definition: yaml.h:780

Definition at line 609 of file yaml_private.h.

◆ NODE_INIT

#define NODE_INIT (   node,
  node_type,
  node_tag,
  node_start_mark,
  node_end_mark 
)
Value:
(memset(&(node), 0, sizeof(yaml_node_t)), \
(node).type = (node_type), \
(node).tag = (node_tag), \
(node).start_mark = (node_start_mark), \
(node).end_mark = (node_end_mark))
The node structure.
Definition: yaml.h:719

Definition at line 629 of file yaml_private.h.

◆ SCALAR_NODE_INIT

#define SCALAR_NODE_INIT (   node,
  node_tag,
  node_value,
  node_length,
  node_style,
  start_mark,
  end_mark 
)
Value:
(NODE_INIT((node),YAML_SCALAR_NODE,(node_tag),(start_mark),(end_mark)), \
(node).data.scalar.value = (node_value), \
(node).data.scalar.length = (node_length), \
(node).data.scalar.style = (node_style))
#define NODE_INIT(node, node_type, node_tag, node_start_mark, node_end_mark)
Definition: yaml_private.h:629
A scalar node.
Definition: yaml.h:697
char data[7]
Definition: libsheepy.c:19690

Definition at line 636 of file yaml_private.h.

◆ SEQUENCE_NODE_INIT

#define SEQUENCE_NODE_INIT (   node,
  node_tag,
  node_items_start,
  node_items_end,
  node_style,
  start_mark,
  end_mark 
)
Value:
(NODE_INIT((node),YAML_SEQUENCE_NODE,(node_tag),(start_mark),(end_mark)), \
(node).data.sequence.items.start = (node_items_start), \
(node).data.sequence.items.end = (node_items_end), \
(node).data.sequence.items.top = (node_items_start), \
(node).data.sequence.style = (node_style))
#define NODE_INIT(node, node_type, node_tag, node_start_mark, node_end_mark)
Definition: yaml_private.h:629
char data[7]
Definition: libsheepy.c:19690
A sequence node.
Definition: yaml.h:699

Definition at line 643 of file yaml_private.h.

◆ MAPPING_NODE_INIT

#define MAPPING_NODE_INIT (   node,
  node_tag,
  node_pairs_start,
  node_pairs_end,
  node_style,
  start_mark,
  end_mark 
)
Value:
(NODE_INIT((node),YAML_MAPPING_NODE,(node_tag),(start_mark),(end_mark)), \
(node).data.mapping.pairs.start = (node_pairs_start), \
(node).data.mapping.pairs.end = (node_pairs_end), \
(node).data.mapping.pairs.top = (node_pairs_start), \
(node).data.mapping.style = (node_style))
#define NODE_INIT(node, node_type, node_tag, node_start_mark, node_end_mark)
Definition: yaml_private.h:629
char data[7]
Definition: libsheepy.c:19690
A mapping node.
Definition: yaml.h:701

Definition at line 651 of file yaml_private.h.

◆ __attribute__unused__

#define __attribute__unused__

Definition at line 667 of file yaml_private.h.

◆ SHIM

#define SHIM (   a)    /*@unused@*/ a __attribute__unused__

Definition at line 672 of file yaml_private.h.

◆ UNUSED_PARAM

#define UNUSED_PARAM (   a)    /*@-noeffect*/if (0) (void)(a)/*@=noeffect*/;

Definition at line 678 of file yaml_private.h.

◆ YAML_MALLOC_STATIC

#define YAML_MALLOC_STATIC (   type)    (type*)yaml_malloc(sizeof(type))

Definition at line 681 of file yaml_private.h.

◆ YAML_MALLOC

#define YAML_MALLOC (   size)    (yaml_char_t *)yaml_malloc(size)

Definition at line 682 of file yaml_private.h.

Function Documentation

◆ yaml_malloc()

yaml_malloc ( size_t  size)

Definition at line 31 of file ymlApi.c.

◆ yaml_realloc()

yaml_realloc ( void *  ptr,
size_t  size 
)

Definition at line 41 of file ymlApi.c.

Here is the caller graph for this function:

◆ yaml_free()

yaml_free ( void *  ptr)

Definition at line 51 of file ymlApi.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ yaml_strdup()

yaml_strdup ( const yaml_char_t )

Definition at line 61 of file ymlApi.c.

◆ yaml_parser_update_buffer()

yaml_parser_update_buffer ( yaml_parser_t parser,
size_t  length 
)

Definition at line 142 of file ymlReader.c.

◆ yaml_parser_fetch_more_tokens()

yaml_parser_fetch_more_tokens ( yaml_parser_t parser)

Definition at line 801 of file ymlScanner.c.

Here is the caller graph for this function:

◆ yaml_string_extend()

yaml_string_extend ( yaml_char_t **  start,
yaml_char_t **  pointer,
yaml_char_t **  end 
)

Definition at line 74 of file ymlApi.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ yaml_string_join()

yaml_string_join ( yaml_char_t **  a_start,
yaml_char_t **  a_pointer,
yaml_char_t **  a_end,
yaml_char_t **  b_start,
yaml_char_t **  b_pointer,
yaml_char_t **  b_end 
)

◆ yaml_stack_extend()

yaml_stack_extend ( void **  start,
void **  top,
void **  end 
)

Definition at line 119 of file ymlApi.c.

Here is the call graph for this function:

◆ yaml_queue_extend()

yaml_queue_extend ( void **  start,
void **  head,
void **  tail,
void **  end 
)

Definition at line 142 of file ymlApi.c.

Here is the call graph for this function: