| 579 | static void fxFreeResults(txPool* pool); |
| 580 | |
| 581 | yaml_node_t *fxGetMappingValue(yaml_document_t* document, yaml_node_t* mapping, char* name) |
| 582 | { |
| 583 | yaml_node_pair_t* pair = mapping->data.mapping.pairs.start; |
| 584 | while (pair < mapping->data.mapping.pairs.top) { |
| 585 | yaml_node_t* key = yaml_document_get_node(document, pair->key); |
| 586 | if (!strcmp((char*)key->data.scalar.value, name)) { |
| 587 | return yaml_document_get_node(document, pair->value); |
| 588 | } |
| 589 | pair++; |
| 590 | } |
| 591 | return NULL; |
| 592 | } |
| 593 | |
| 594 | txFeature* fxNewFeature(char* name) |
| 595 | { |
no test coverage detected