From 84a5eed60e471d8e680e76211c9ea6662013ecf7 Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Wed, 17 Dec 2008 10:24:13 +0000 Subject: [PATCH] - Implement __lconv_init svn path=/trunk/; revision=38143 --- reactos/lib/sdk/crt/locale/locale.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/locale/locale.c b/reactos/lib/sdk/crt/locale/locale.c index e20d4390333..d3425e19efe 100644 --- a/reactos/lib/sdk/crt/locale/locale.c +++ b/reactos/lib/sdk/crt/locale/locale.c @@ -802,7 +802,15 @@ void *_Gettnames(void) */ void __lconv_init(void) { - FIXME(" stub\n"); + char Char = (char) UCHAR_MAX; + + TRACE("__lconv_init()\n"); + + _lconv.int_frac_digits = Char; + _lconv.frac_digits = Char; + _lconv.p_sep_by_space = _lconv.n_sep_by_space = Char; + _lconv.p_cs_precedes = _lconv.n_cs_precedes = Char; + _lconv.p_sign_posn = _lconv.n_sign_posn = Char; }