Update.
[glibc.git] / locale / indigits.h
bloba5289cec06422c079c1a2493ac10b35a580eb83e
1 /* Copyright (C) 2000 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.org>, 2000.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <assert.h>
21 #include <langinfo.h>
22 #include <string.h>
24 /* Look up the value of the next multibyte character and return its numerical
25 value if it is one of the digits known in the locale. If *DECIDED is
26 -1 this means it is not yet decided which form it is and we have to
27 search through all available digits. Otherwise we know which script
28 the digits are from. */
29 static inline int
30 indigit_value (const char **s, size_t *len, int *decided)
32 int from_level;
33 int to_level;
34 const char *mbdigits[10];
35 int n;
37 if (*decided != -1)
38 from_level = to_level = *decided;
39 else
41 from_level = 0;
42 to_level = _NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_INDIGITS_MB_LEN) - 1;
43 assert (from_level <= to_level);
46 /* In this round we get the pointer to the digit strings and also perform
47 the first round of comparisons. */
48 for (n = 0; n < 10; ++n)
50 size_t dlen;
52 /* Get the string for the digits with value N. */
53 mbdigits[n] = _NL_CURRENT (LC_CTYPE, _NL_CTYPE_INDIGITS0_MB + n);
54 dlen = strlen (mbdigits[n]);
56 if (dlen <= len && memcmp (*s, mbdigits[n], dlen) == 0)
58 /* Found it. */
59 *s += dlen;
60 len -= dlen;
61 if (*decided == -1)
62 *decided = 0;
63 return n;
66 /* Advance the pointer to the next string. */
67 mbdigits[n] += dlen + 1;
70 /* Now perform the remaining tests. */
71 while (++from_level <= to_level)
73 /* Search all ten digits of this level. */
74 for (n = 0; n < 10; ++n)
76 size_t dlen = strlen (mbdigits[n]);
78 if (dlen <= len && memcmp (*s, mbdigits[n], dlen) == 0)
80 /* Found it. */
81 *s += dlen;
82 len -= dlen;
83 if (*decided == -1)
84 *decided = from_level;
85 return n;
88 /* Advance the pointer to the next string. */
89 mbdigits[n] += dlen + 1;
92 /* Next level. */
93 ++from_level;
96 /* If we reach this point no matching digit was found. */
97 return -1;