Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      localeconv

      From cppreference.com
      <c‎ |locale
       
       
       
      Defined in header<locale.h>
      structlconv* localeconv(void);

      Thelocaleconv function obtains a pointer to a static object of typelconv, which represents numeric and monetary formatting rules of the current C locale.

      Contents

      [edit]Parameters

      (none)

      [edit]Return value

      pointer to the currentlconv object.

      [edit]Notes

      Modifying the object references through the returned pointer is undefined behavior.

      localeconv modifies a static object, calling it from different threads without synchronization is undefined behavior.

      [edit]Example

      Run this code
      #include <locale.h>#include <stdio.h> int main(void){setlocale(LC_MONETARY,"en_IN.utf8");structlconv* lc= localeconv();printf("Local Currency Symbol        : %s\n", lc->currency_symbol);printf("International Currency Symbol: %s\n", lc->int_curr_symbol);}

      Output:

      Local Currency Symbol        : ₹International Currency Symbol: INR

      [edit]References

      • C23 standard (ISO/IEC 9899:2024):
      • 7.11.2.1 The localeconv function (p: TBD)
      • C17 standard (ISO/IEC 9899:2018):
      • 7.11.2.1 The localeconv function (p: TBD)
      • C11 standard (ISO/IEC 9899:2011):
      • 7.11.2.1 The localeconv function (p: 225-230)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.11.2.1 The localeconv function (p: 206-211)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 4.4.2.1 The localeconv function

      [edit]See also

      gets and sets the current C locale
      (function)[edit]
      formatting details, returned bylocaleconv
      (struct)[edit]
      C++ documentation forlocaleconv
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/locale/localeconv&oldid=180071"

      [8]ページ先頭

      ©2009-2025 Movatter.jp