| 785 | } |
| 786 | |
| 787 | xode xode_wrap(xode x,const char *wrapper) |
| 788 | { |
| 789 | xode wrap; |
| 790 | if(x==NULL||wrapper==NULL) return NULL; |
| 791 | wrap=xode_new_frompool(xode_get_pool(x),wrapper); |
| 792 | if(wrap==NULL) return NULL; |
| 793 | wrap->firstchild=x; |
| 794 | wrap->lastchild=x; |
| 795 | x->parent=wrap; |
| 796 | return wrap; |
| 797 | } |
| 798 | |
| 799 | void xode_free(xode node) |
| 800 | { |
nothing calls this directly
no test coverage detected