MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / getDecimalPoint

Function getDecimalPoint

json/jsoncpp.cpp:117–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

fixNumericLocaleInputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected