std::localeconv
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Text processing library
Regular expressions library (C++11)
Formatting library (C++20)
(C++17)
(C++17)
(C++17)
(C++17)
(C++17)
(C++26)
Localization library
(C++11/17/26*)
(C++11/17/26*)
(C++11/17/26*)
(C++11/17/26*)
(C++11/17/26*)
(C++11/17/26*)
Defined in header
<clocale>
std::lconv * localeconv();
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.
Contents
[edit] Parameters
(none)
[edit] Return value
Pointer to the current std::lconv object.
[edit] Notes
Modifying 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.
[edit] Example
Run this code
#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
C documentation for localeconv