| 527 | } |
| 528 | } |
| 529 | char *p2String(poly2 d, BOOLEAN typed) |
| 530 | { |
| 531 | StringSetS(""); |
| 532 | if ((d!=NULL) && (d->cf!=NULL)) |
| 533 | { |
| 534 | if (typed) StringAppendS("Poly("); |
| 535 | p_Write0(d->n,d->cf); |
| 536 | if (typed) StringAppendS(")"); |
| 537 | } |
| 538 | else StringAppendS("oo"); |
| 539 | return StringEndS(); |
| 540 | } |
| 541 | |
| 542 | void p2Print(poly2 d) |
| 543 | { |
no test coverage detected