C localization functions: Difference between revisions

Content deleted Content added
No edit summary
Line 17:
<code>'''struct''' lconv* localeconv('''void''');</code><br />
<code>'''char'''* setlocale('''int''', '''const char'''*);</code>
<code>'''char'''thousand sep;</code>
separator for non-monetary values
<code>'''char'''* currency symbol;</code>
currency symbol
<code>'''char'''* int curr symbol;</code>
international currency symbol
<code>'''char'''*mon-decimal point</code>
decimal point for monetary values
<code>'''char'''* mon grouping; </code>
sizes of digit groups for monetary values
<code>'''char'''* mon thousand sep;</code>
separator for digit groups for monetary values
<ref name=www.utas.edu.au group=infosys>{{cite web|title=local.h|url=http://www.utas.edu.au/infosys/info/documentation/C/CStdLib.html#locale.h|work=utas.edu.au|publisher=infosys|accessdate=14 September 2011}}</ref>
 
===Example===