| 514 | return r; |
| 515 | } |
| 516 | void p2Delete(poly2 &d) |
| 517 | { |
| 518 | if (d!=NULL) |
| 519 | { |
| 520 | if (d->cf!=NULL) |
| 521 | { |
| 522 | p_Delete(&d->n,d->cf); |
| 523 | rKill(d->cf); |
| 524 | } |
| 525 | omFreeSize(d,sizeof(*d)); |
| 526 | d=NULL; |
| 527 | } |
| 528 | } |
| 529 | char *p2String(poly2 d, BOOLEAN typed) |
| 530 | { |
| 531 | StringSetS(""); |
no test coverage detected