| 32 | } |
| 33 | |
| 34 | static const ctl_named_node_t * |
| 35 | ctl_named_children(const ctl_named_node_t *node, size_t index) { |
| 36 | const ctl_named_node_t *children = ctl_named_node(node->children); |
| 37 | |
| 38 | return (children ? &children[index] : NULL); |
| 39 | } |
| 40 | |
| 41 | static const ctl_indexed_node_t * |
| 42 | ctl_indexed_node(const ctl_node_t *node) { |
no test coverage detected