| 297 | #if defined(MAKEDEFS_C) || defined(FOR_RUNTIME) |
| 298 | |
| 299 | char * |
| 300 | mdlib_version_string(char *outbuf, const char *delim) |
| 301 | { |
| 302 | Sprintf(outbuf, "%d%s%d%s%d", VERSION_MAJOR, delim, VERSION_MINOR, delim, |
| 303 | PATCHLEVEL); |
| 304 | #if (NH_DEVEL_STATUS != NH_STATUS_RELEASED) |
| 305 | Sprintf(eos(outbuf), "-%d", EDITLEVEL); |
| 306 | #endif |
| 307 | return outbuf; |
| 308 | } |
| 309 | |
| 310 | #define Snprintf(str, size, ...) \ |
| 311 | nh_snprintf(__func__, __LINE__, str, size, __VA_ARGS__) |
no test coverage detected