| 1568 | } |
| 1569 | |
| 1570 | static void toml_assignment_dispose(toml_assignment_t *assignment) { |
| 1571 | if (assignment) { |
| 1572 | toml_key_path_dispose(&assignment->key); |
| 1573 | } |
| 1574 | } |
| 1575 | |
| 1576 | static int toml_assignment_string_equals(const char *data, const toml_assignment_t *assignment, |
| 1577 | const char *expected, int *matches) { |
no test coverage detected