| 166 | } |
| 167 | |
| 168 | static void mi_print_count(int64_t n, int64_t unit, mi_output_fun* out, void* arg) { |
| 169 | if (unit==1) _mi_fprintf(out, arg, "%11s"," "); |
| 170 | else mi_print_amount(n,0,out,arg); |
| 171 | } |
| 172 | |
| 173 | static void mi_stat_print_ex(const mi_stat_count_t* stat, const char* msg, int64_t unit, mi_output_fun* out, void* arg, const char* notok ) { |
| 174 | _mi_fprintf(out, arg,"%10s:", msg); |
no test coverage detected