]> git.ipfire.org Git - thirdparty/glibc.git/blame - locale/programs/locale-spec.c
Update to LGPL v2.1.
[thirdparty/glibc.git] / locale / programs / locale-spec.c
CommitLineData
036cc82f 1/* Handle special requests.
a9d75566 2 Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
c84142e8
UD
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
c84142e8
UD
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 14 Lesser General Public License for more details.
c84142e8 15
41bdb6e2
AJ
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
036cc82f
RM
20
21#ifdef HAVE_CONFIG_H
22# include <config.h>
23#endif
24
25#include <stdio.h>
26#include <string.h>
27#include <wchar.h>
28
29#include "localeinfo.h"
30
31
32/* We provide support for some special names. This helps debugging
33 and may be useful for advanced usage of the provided information
34 outside C. */
35void
36locale_special (const char *name, int show_category_name,
37 int show_keyword_name)
38{
b06c53e7 39#if 0
036cc82f
RM
40 /* "collate-elements": print collation elements of locale. */
41 if (strcmp (name, "collate-elements") == 0)
42 {
43 size_t nelem = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_ELEM_HASH_SIZE);
44
45 if (show_category_name)
46 puts ("LC_COLLATE");
47 if (show_keyword_name)
48 fputs ("collate-elements=", stdout);
49
50 if (nelem != 0)
51 {
52 int first = 1;
53 size_t cnt;
54
55 for (cnt = 0; cnt < nelem; ++cnt)
56 if (__collate_element_hash[2 * cnt] != (~((u_int32_t) 0)))
57 {
58 size_t idx = __collate_element_hash[2 * cnt];
59
60 printf ("%s<%s>", first ? "" : ";",
61 &__collate_element_strings[idx]);
62
036cc82f
RM
63 /* We don't print the string. This is only confusing
64 because only the programs have to know the
65 encoding. The code is left in place because it
66 shows how to get the information. */
67 {
68 const wchar_t *wp;
69
70 idx = __collate_element_hash[2 * cnt + 1];
71 wp = &__collate_element_values[idx];
72 while (*wp != L'\0')
73 {
74 /********************************************\
75 |* XXX The element values are really wide *|
76 |* chars. But we are currently not able to *|
77 |* print these so fake here. *|
78 \********************************************/
79 int ch = wctob (*wp++);
80 if (ch != EOF)
81 putchar (ch);
82 else
b1418d8f 83 fputs ("<??\?>", stdout);
036cc82f
RM
84 }
85
86 putchar ('"');
87 }
036cc82f
RM
88 first = 0;
89 }
90 }
91 putchar ('\n');
92 return;
93 }
ce7a5ef4
RM
94
95 if (strcmp (name, "collate-classes") == 0)
96 {
97 size_t nelem = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_SYMB_HASH_SIZE);
98 size_t cnt;
99 int first = 1;
100
101 if (show_category_name)
102 puts ("LC_COLLATE");
103 if (show_keyword_name)
104 fputs ("collate-classes=", stdout);
105
106 for (cnt = 0; cnt < nelem; ++cnt)
107 if (__collate_symbol_hash[2 * cnt] != 0xffffffff)
108 {
109 printf ("%s<%s>", first ? "" : ",",
110 &__collate_symbol_strings[__collate_symbol_hash[2 * cnt]]);
4b10dd6c 111#if 0
ce7a5ef4
RM
112 {
113 size_t idx = __collate_symbol_hash[2 * cnt + 1];
114 size_t cls;
115
116 putchar ('=');
117 for (cls = 0; cls < __collate_symbol_classes[idx]; ++cls)
118 printf ("%s%d", cls == 0 ? "" : ":",
119 __collate_symbol_classes[idx + 1 + cls]);
120 }
121#endif
122 first = 0;
123 }
124 putchar ('\n');
125 return;
126 }
b06c53e7 127#endif
036cc82f 128}