| 804 | inline char *newstringbuf() { return newstring(MAXSTRLEN-1); } |
| 805 | inline char *newstringbuf(const char *s) { return newstring(s, MAXSTRLEN-1); } |
| 806 | inline void delstring(const char *s) { delete[] (char *)s; } |
| 807 | #define DELSTRING(s) if(s) { delstring(s); s = NULL; } |
| 808 | |
| 809 | #ifndef INT_LEAST64_MIN |
no outgoing calls
no test coverage detected