| 1461 | } |
| 1462 | |
| 1463 | static void toml_header_dispose(toml_header_t *header) { |
| 1464 | if (header) { |
| 1465 | toml_key_path_dispose(&header->path); |
| 1466 | } |
| 1467 | } |
| 1468 | |
| 1469 | static int toml_line_is_blank_or_comment(const char *data, const toml_line_t *line) { |
| 1470 | size_t pos = line->start; |
no test coverage detected