C localization functions: Difference between revisions

Content deleted Content added
Overview of functions: add table headings
Example: formatting
Line 33:
 
int main(void)
{
{ /* Locale is set to "C" before this. This call sets it
to the "current locale" by reading environment variables: */
setlocale(LC_ALL, "");
Line 42 ⟶ 43:
currentlocale->currency_symbol);
 
return EXIT_SUCCESS;
}
</source>