Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/stdlib/strtodg.c9
2 files changed, 13 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 7bc7b1d56..af52b1b97 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-21 Corinna Vinschen <corinna@vinschen.de>
+
+ * libc/stdlib/strtodg.c: Define USE_LOCALE.
+ (_strtodg_r): Handle multibyte decimal point.
+
2015-11-20 Corinna Vinschen <corinna@vinschen.de>
* libc/stdlib/Makefile.am (GENERAL_SOURCES): Add strtodg.c and
diff --git a/newlib/libc/stdlib/strtodg.c b/newlib/libc/stdlib/strtodg.c
index 70ec17906..594238a9e 100644
--- a/newlib/libc/stdlib/strtodg.c
+++ b/newlib/libc/stdlib/strtodg.c
@@ -39,6 +39,8 @@ THIS SOFTWARE.
#include "locale.h"
+#define USE_LOCALE
+
static const int
fivesbits[] = { 0, 3, 5, 7, 10, 12, 14, 17, 19, 21,
24, 26, 28, 31, 33, 35, 38, 40, 42, 45,
@@ -516,13 +518,18 @@ _strtodg_r
z = 10*z + c - '0';
nd0 = nd;
#ifdef USE_LOCALE
- if (c == *localeconv()->decimal_point)
+ if (strncmp (s, _localeconv_r (p)->decimal_point,
+ strlen (_localeconv_r (p)->decimal_point)) == 0)
#else
if (c == '.')
#endif
{
decpt = 1;
+#ifdef USE_LOCALE
+ c = *(s += strlen (_localeconv_r (p)->decimal_point));
+#else
c = *++s;
+#endif
if (!nd) {
for(; c == '0'; c = *++s)
nz++;