MCPcopy Create free account
hub / github.com/Samsung/UTopia / getDecimalPoint

Function getDecimalPoint

external/jsoncpp/jsoncpp.cpp:109–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107
108namespace Json {
109static inline char getDecimalPoint() {
110#ifdef JSONCPP_NO_LOCALE_SUPPORT
111 return '\0';
112#else
113 struct lconv *lc = localeconv();
114 return lc ? *(lc->decimal_point) : '\0';
115#endif
116}
117
118/// Converts a unicode code-point to UTF-8.
119static inline String codePointToUTF8(unsigned int cp) {

Callers 1

fixNumericLocaleInputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected