| 1283 | } |
| 1284 | |
| 1285 | int32_t printf(const char* _format, ...) |
| 1286 | { |
| 1287 | va_list argList; |
| 1288 | va_start(argList, _format); |
| 1289 | int32_t total = vprintf(_format, argList); |
| 1290 | va_end(argList); |
| 1291 | |
| 1292 | return total; |
| 1293 | } |
| 1294 | |
| 1295 | static const char s_units[] = { 'B', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' }; |
| 1296 |
no test coverage detected