C localization functions: Difference between revisions

Content deleted Content added
Example: syntax
Line 40:
 
int main(void)
{/* Locale is set to "C" before this. This call sets it
{
/* Locale is set to "C" before this. This call sets it
to the "current locale" by reading environment variables: */
setlocale(LC_ALL, "");
Line 50 ⟶ 49:
currentlocale->currency_symbol);
 
return EXIT_SUCCESS;}
}
</source>