summaryrefslogtreecommitdiff
path: root/include/mbgl/i18n/number_format.hpp
blob: cb1e94c7bd78c48d0212285d7e8a221518b1a120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <string>

namespace mbgl {
namespace platform {

std::string formatNumber(double number,
                         const std::string& localeId,
                         const std::string& currency,
                         uint8_t minFractionDigits,
                         uint8_t maxFractionDigits);

} // namespace platform
} // namespace mbgl