* xode_new_tag -- create a tag node * Automatically creates a memory xode_pool for the node. * * parameters * name -- name of the tag * * returns * a pointer to the tag node * or NULL if it was unsuccessful */
| 226 | * or NULL if it was unsuccessful |
| 227 | */ |
| 228 | xode xode_new(const char* name) |
| 229 | { |
| 230 | return _xode_new(NULL, name, XODE_TYPE_TAG); |
| 231 | } |
| 232 | |
| 233 | /* |
| 234 | * alias for 'xode_new' |
no test coverage detected