* This function is intended as a * vfprintf clone with consistent, platform independent output for * problematic formats like %p, %zd and %lld. */
| 1461 | * problematic formats like %p, %zd and %lld. |
| 1462 | */ |
| 1463 | static void DbugVfprintf(FILE *stream, const char* format, va_list args) |
| 1464 | { |
| 1465 | char cvtbuf[1024]; |
| 1466 | (void) my_vsnprintf(cvtbuf, sizeof(cvtbuf), format, args); |
| 1467 | (void) fprintf(stream, "%s\n", cvtbuf); |
| 1468 | } |
| 1469 | |
| 1470 | |
| 1471 | /* |
no test coverage detected