/ Make string output of an object value. */ /
| 583 | /* Make string output of an object value. */ |
| 584 | /***********************************************************************/ |
| 585 | void VALUE::Prints(PGLOBAL g, char *ps, uint z) |
| 586 | { |
| 587 | char *p, buf[64]; |
| 588 | |
| 589 | if (Null) |
| 590 | p = strcpy(buf, "<null>"); |
| 591 | else |
| 592 | p = GetCharString(buf); |
| 593 | |
| 594 | strncpy(ps, p, z); |
| 595 | } // end of Prints |
| 596 | |
| 597 | /* -------------------------- Class TYPVAL ---------------------------- */ |
| 598 |
no outgoing calls
no test coverage detected