Subversion Repositories tendra.SVN

Rev

Rev 71 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
71 7u83 1
#ifndef __TENDRA_LOCALE_H
2
#define __TENDRA_LOCALE_H
3
 
4
struct lconv {
5
	char	*decimal_point;
6
	char	*thousands_sep;
7
	char	*grouping;
8
	char	*int_curr_symbol;
9
	char	*currency_symbol;
10
	char	*mon_decimal_point;
11
	char	*mon_thousands_sep;
12
	char	*mon_grouping;
13
	char	*positive_sign;
14
	char	*negative_sign;
15
	char	int_frac_digits;
16
	char	frac_digits;
17
	char	p_cs_precedes;
18
	char	p_sep_by_space;
19
	char	n_cs_precedes;
20
	char	n_sep_by_space;
21
	char	p_sign_posn;
22
	char	n_sign_posn;
23
	char	int_p_cs_precedes;
24
	char	int_n_cs_precedes;
25
	char	int_p_sep_by_space;
26
	char	int_n_sep_by_space;
27
	char	int_p_sign_posn;
28
	char	int_n_sign_posn;
29
};
30
 
31
 
32
#define	LC_ALL		0
33
#define	LC_COLLATE	1
34
#define	LC_CTYPE	2
35
#define	LC_MONETARY	3
36
#define	LC_NUMERIC	4
37
#define	LC_TIME		5
38
#define	LC_MESSAGES	6
39
 
40
#define	_LC_LAST	7		/* marks end */
41
 
42
 
43
 
44
#endif
45