| 107 | char * bitcoinf(double value) { return currency64(round(value * 1000000), 6, '.', ',', 'B'); } |
| 108 | char * dollarf(double value) { return currency64(round(value * 100), 2, '.', ',', '$'); } |
| 109 | char * eurof(double value) { return currency64(round(value * 100), 2, ',', '.', 'E'); } |
| 110 | char * poundf(double value) { return currency64(round(value * 100), 2, ',', '.', 'L'); } |
| 111 | char * roublesf(double value) { return currency64(round(value * 100), 2, ',', '.', 'P'); } |
| 112 | char * yenf(double value) { return currency64(round(value * 100), 2, '.', ',', 'Y'); } |