12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BASE_I18N_NUMBER_FORMATTING_H_
- #define BASE_I18N_NUMBER_FORMATTING_H_
- #include <stdint.h>
- #include "base/i18n/base_i18n_export.h"
- #include "base/strings/string16.h"
- namespace base {
- BASE_I18N_EXPORT string16 FormatNumber(int64_t number);
- BASE_I18N_EXPORT string16 FormatDouble(double number, int fractional_digits);
- BASE_I18N_EXPORT string16 FormatPercent(int number);
- BASE_I18N_EXPORT void ResetFormattersForTesting();
- }
- #endif
|