| 1272 | } |
| 1273 | |
| 1274 | int32_t vprintf(const char* _format, va_list _argList) |
| 1275 | { |
| 1276 | Error err; |
| 1277 | va_list argListCopy; |
| 1278 | va_copy(argListCopy, _argList); |
| 1279 | int32_t total = write(getStdOut(), _format, argListCopy, &err); |
| 1280 | va_end(argListCopy); |
| 1281 | |
| 1282 | return total; |
| 1283 | } |
| 1284 | |
| 1285 | int32_t printf(const char* _format, ...) |
| 1286 | { |