summaryrefslogtreecommitdiffstats
path: root/private/crt32/misc/lconv.c
blob: a7d18aac64dcb4a55ccd62ced70f541348484601 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/***
*lconv.c - Contains the localeconv function
*
*	Copyright (c) 1988-1991, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	Contains the localeconv() function.
*
*Revision History:
*	03-21-89   JCR	Module created.
*	06-20-89   JCR	Removed _LOAD_DGROUP code
*	03-14-90   GJF	Replaced _cdecl _LOAD_DS with _CALLTYPE1 and added
*			#include <cruntime.h>. Also, fixed the copyright.
*	10-04-90   GJF	New-style function declarator.
*	10-04-91   ETC	Changed _c_lconv to _lconv (locale support).
*			_lconv no longer static.
*	12-20-91   ETC	Changed _lconv to _lconv_c (C locale structure).
*			Created _lconv pointer to point to current lconv.
*	02-08-93	CFW	Added _lconv_static_*.
*
*******************************************************************************/

#include <cruntime.h>
#include <limits.h>
#include <locale.h>



/* pointer to original static to avoid freeing */
char _lconv_static_decimal[] = ".";
char _lconv_static_null[] = "";

/* lconv settings for "C" locale */
struct lconv _lconv_c = {
		_lconv_static_decimal, /* decimal_point */
		_lconv_static_null,	   /* thousands_sep */
		_lconv_static_null,	   /* grouping */
		_lconv_static_null,	   /* int_curr_symbol */
		_lconv_static_null,	   /* currency_symbol */
		_lconv_static_null,	   /* mon_decimal_point */
		_lconv_static_null,	   /* mon_thousands_sep */
		_lconv_static_null,	   /* mon_grouping */
		_lconv_static_null,	   /* positive_sign */
		_lconv_static_null,	   /* negative_sign */
		CHAR_MAX,		            /* int_frac_digits */
		CHAR_MAX,		            /* frac_digits */
		CHAR_MAX,		            /* p_cs_precedes */
		CHAR_MAX,		            /* p_sep_by_space */
		CHAR_MAX,		            /* n_cs_precedes */
		CHAR_MAX,		            /* n_sep_by_space */
		CHAR_MAX,		            /* p_sign_posn */
		CHAR_MAX		               /* n_sign_posn */
		};


/* pointer to current lconv structure */

struct lconv *_lconv = &_lconv_c;


/***
*struct lconv *localeconv(void) - Return the numeric formatting convention
*
*Purpose:
*	The localeconv() routine returns the numeric formatting conventions
*	for the current locale setting.  [ANSI]
*
*Entry:
*	void
*
*Exit:
*	struct lconv * = pointer to struct indicating current numeric
*			 formatting conventions.
*
*Exceptions:
*
*******************************************************************************/

struct lconv * _CALLTYPE1 localeconv (
	void
	)
{
	/* the work is done by setlocale() */

	return(_lconv);
}