| 1 | #include "stdafx.h" |
| 2 | |
| 3 | static void attr_print(const acl::xml_attr& attr, int depth) |
| 4 | { |
| 5 | for (int i = 0; i < depth; i++) |
| 6 | printf("\t"); |
| 7 | |
| 8 | printf("%s=\"%s\"\r\n", attr.get_name(), attr.get_value()); |
| 9 | } |
| 10 | |
| 11 | static void node_attr_print(const acl::xml_node& node, int depth) |
| 12 | { |
no test coverage detected
searching dependent graphs…