* xode_new_tag_pool -- create a tag node within given pool * * parameters * p -- previously created memory pool * name -- name of the tag * * returns * a pointer to the tag node * or NULL if it was unsuccessful */
| 250 | * or NULL if it was unsuccessful |
| 251 | */ |
| 252 | xode xode_new_frompool(xode_pool p, const char* name) |
| 253 | { |
| 254 | return _xode_new(p, name, XODE_TYPE_TAG); |
| 255 | } |
| 256 | |
| 257 | |
| 258 | /* |
no test coverage detected