| 2891 | } |
| 2892 | |
| 2893 | void BurpGlobals::print_stats_header() |
| 2894 | { |
| 2895 | if (gbl_stat_header || !gbl_stat_flags) |
| 2896 | return; |
| 2897 | |
| 2898 | gbl_stat_header = true; |
| 2899 | |
| 2900 | BURP_msg_partial(false, 169); // msg 169: gbak: |
| 2901 | burp_output(false, " "); |
| 2902 | |
| 2903 | for (int i = 0; i < LAST_COUNTER; i++) |
| 2904 | { |
| 2905 | if (gbl_stat_flags & (1 << i)) |
| 2906 | burp_output(false, "%-*s", STAT_FORMATS[i].width, STAT_FORMATS[i].header); |
| 2907 | } |
| 2908 | |
| 2909 | burp_output(false, "\n"); |
| 2910 | } |
| 2911 | |
| 2912 | void BURP_makeSymbol(BurpGlobals* tdgbl, Firebird::string& name) // add double quotes to string |
| 2913 | { |
no test coverage detected