| 1107 | } |
| 1108 | |
| 1109 | static 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 | |
| 1116 | static size_t yaml_trim_spaces_end(const char *data, size_t start, size_t end) { |
| 1117 | while (end > start && data[end - YAML_UNIT] == ' ') { |
no outgoing calls
no test coverage detected