MCPcopy Create free account
hub / github.com/Illumina/paragraph / getDecimalPoint

Function getDecimalPoint

external/jsoncpp/jsoncpp.cpp:112–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

fixNumericLocaleInputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected