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

Function yaml_skip_spaces

src/cli/config_yaml_edit.c:1225–1230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1223}
1224
1225static size_t yaml_skip_spaces(const char *data, size_t pos, size_t end) {
1226 while (pos < end && data[pos] == ' ') {
1227 pos++;
1228 }
1229 return pos;
1230}
1231
1232static size_t yaml_trim_spaces_end(const char *data, size_t start, size_t end) {
1233 while (end > start && data[end - YAML_UNIT] == ' ') {

Callers 10

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