MCPcopy Create free account
hub / github.com/PlayFab/gsdk / getDecimalPoint

Function getDecimalPoint

cpp/cppsdk/jsoncpp.cpp:115–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113
114namespace Json {
115static inline char getDecimalPoint() {
116#ifdef JSONCPP_NO_LOCALE_SUPPORT
117 return '\0';
118#else
119 struct lconv* lc = localeconv();
120 return lc ? *(lc->decimal_point) : '\0';
121#endif
122}
123
124/// Converts a unicode code-point to UTF-8.
125static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {

Callers 1

fixNumericLocaleInputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected