| 799 | #endif |
| 800 | |
| 801 | inline char *newstring(size_t l) { return new char[l+1]; } |
| 802 | inline char *newstring(const char *s, size_t l) { return copystring(newstring(l), s, l+1); } |
| 803 | inline char *newstring(const char *s) { size_t l = strlen(s); char *d = newstring(l); memcpy(d, s, l+1); return d; } |
| 804 | inline char *newstringbuf() { return newstring(MAXSTRLEN-1); } |
no test coverage detected