blob: 80459086814144d8d665e1ed0ad975dcb419d908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <locale.h>
#define LC_NUMERIC (4)
/** locale number formatting category **/
/***
is used as the ARGUMENT(category) in a call to FUNCTION(setlocale) to operate
on the portion of the locale that affects formatting numeric values, except
for monetary values.
***/
/*
STDC(1)
*/
|