| 594 | inline void appendInt(int n) |
| 595 | { char buf[32]; sprintf (buf, "%d", n); append (buf); } |
| 596 | inline void appendPointer(void *p) |
| 597 | { char buf[32]; sprintf (buf, "%p", p); append (buf); } |
| 598 | inline void appendBool(bool b) { append (b ? "true" : "false"); } |
| 599 | void appendNoCopy(char *str); |
| 600 | const char *getChars(); |
no outgoing calls
no test coverage detected