MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / yaml_skip_spaces

Function yaml_skip_spaces

src/cli/config_yaml_edit.c:1109–1114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1107}
1108
1109static size_t yaml_skip_spaces(const char *data, size_t pos, size_t end) {
1110 while (pos < end && data[pos] == ' ') {
1111 pos++;
1112 }
1113 return pos;
1114}
1115
1116static size_t yaml_trim_spaces_end(const char *data, size_t start, size_t end) {
1117 while (end > start && data[end - YAML_UNIT] == ' ') {

Callers 8

yaml_tail_is_emptyFunction · 0.85
yaml_decode_scalarFunction · 0.85
yaml_add_item_rangeFunction · 0.85
yaml_parse_block_listFunction · 0.85
yaml_analyze_listFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected