| 12 | # include "util/transform.h" |
| 13 | |
| 14 | CCL_NAMESPACE_BEGIN |
| 15 | |
| 16 | static bool xml_read_boolean(const char *value) |
| 17 | { |
| 18 | return string_iequals(value, "true") || (atoi(value) != 0); |
| 19 | } |
| 20 | |
| 21 | static const char *xml_write_boolean(bool value) |
| 22 | { |
no test coverage detected