| 62 | } |
| 63 | |
| 64 | string StringPrintf(const char* format, ...) { |
| 65 | char buf[4096]; |
| 66 | va_list ap; |
| 67 | va_start(ap, format); |
| 68 | vsnprintf(buf, sizeof(buf), format, ap); |
| 69 | va_end(ap); |
| 70 | return buf; |
| 71 | } |
| 72 | |
| 73 | bool benchmark_running = false; |
| 74 | int64 benchmark_real_time_us = 0; |
no outgoing calls
no test coverage detected