| 1223 | } |
| 1224 | |
| 1225 | static 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 | |
| 1232 | static size_t yaml_trim_spaces_end(const char *data, size_t start, size_t end) { |
| 1233 | while (end > start && data[end - YAML_UNIT] == ' ') { |
no outgoing calls
no test coverage detected