1/* Locale object representing the global locale controlled by setlocale.
2   Copyright (C) 2002-2019 Free Software Foundation, Inc.
3   This file is part of the GNU C Library.
4
5   The GNU C Library is free software; you can redistribute it and/or
6   modify it under the terms of the GNU Lesser General Public
7   License as published by the Free Software Foundation; either
8   version 2.1 of the License, or (at your option) any later version.
9
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   Lesser General Public License for more details.
14
15   You should have received a copy of the GNU Lesser General Public
16   License along with the GNU C Library; if not, see
17   <http://www.gnu.org/licenses/>.  */
18
19#include <locale.h>
20#include "localeinfo.h"
21
22#define DEFINE_CATEGORY(category, category_name, items, a) \
23extern struct locale_data _nl_C_##category;
24#include "categories.def"
25#undef        DEFINE_CATEGORY
26
27/* Defined in locale/C-ctype.c.  */
28extern const char _nl_C_LC_CTYPE_class[];
29extern const char _nl_C_LC_CTYPE_toupper[];
30extern const char _nl_C_LC_CTYPE_tolower[];
31
32/* Here we define the locale object maintained by setlocale.
33   The references in the initializer are weak, so the parts of
34   the structure that are never referred to will be zero.  */
35
36struct __locale_struct _nl_global_locale =
37  {
38    .__locales =
39    {
40#define DEFINE_CATEGORY(category, category_name, items, a) \
41      [category] = &_nl_C_##category,
42#include "categories.def"
43#undef        DEFINE_CATEGORY
44    },
45    .__ctype_b = (const unsigned short int *) _nl_C_LC_CTYPE_class + 128,
46    .__ctype_tolower = (const int *) _nl_C_LC_CTYPE_tolower + 128,
47    .__ctype_toupper = (const int *) _nl_C_LC_CTYPE_toupper + 128
48  };
49