The localeconv
function obtains a pointer to a static object of type std::lconv, which represents numeric and monetary formatting rules of the current C locale.
(none)
[edit] Return valuePointer to the current std::lconv object.
[edit] NotesModifying the object references through the returned pointer is undefined behavior.
std::localeconv
modifies a static object, calling it from different threads without synchronization is undefined behavior.
#include <clocale> #include <iostream> int main() { std::setlocale(LC_ALL, "ja_JP.UTF-8"); std::lconv* lc = std::localeconv(); std::cout << "Japanese currency symbol: " << lc->currency_symbol << '(' << lc->int_curr_symbol << ")\n"; }
Output:
Japanese currency symbol: ï¿¥(JPY )[edit] See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4