/* nl_langinfo -- Access to locale-dependent parameters.
-Copyright (C) 1995, 1996 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
+ Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
-The GNU C Library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Library General Public License for more details.
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
-You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB. If
-not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA. */
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
#ifndef _LANGINFO_H
#define _LANGINFO_H 1
ERA_D_T_FMT, /* Date and time in alternate era format. */
ERA_T_FMT, /* Time in alternate era format. */
+ _NL_TIME_NUM_ALT_DIGITS, /* Number entries in the alt_digits arrays. */
+
+ _NL_TIME_ERA_NUM_ENTRIES, /* Number entries in the era arrays. */
+ _NL_TIME_ERA_ENTRIES_EB, /* Structure with era entries in usable form.*/
+ _NL_TIME_ERA_ENTRIES_EL,
+
_NL_NUM_LC_TIME, /* Number of indices in LC_TIME category. */
/* LC_COLLATE category: text sorting.
_NL_COLLATE_UNDEFINED,
_NL_COLLATE_EXTRA_EB,
_NL_COLLATE_EXTRA_EL,
+ _NL_COLLATE_ELEM_HASH_SIZE,
+ _NL_COLLATE_ELEM_HASH_EB,
+ _NL_COLLATE_ELEM_HASH_EL,
+ _NL_COLLATE_ELEM_STR_POOL,
+ _NL_COLLATE_ELEM_VAL_EB,
+ _NL_COLLATE_ELEM_VAL_EL,
+ _NL_COLLATE_SYMB_HASH_SIZE,
+ _NL_COLLATE_SYMB_HASH_EB,
+ _NL_COLLATE_SYMB_HASH_EL,
+ _NL_COLLATE_SYMB_STR_POOL,
+ _NL_COLLATE_SYMB_CLASS_EB,
+ _NL_COLLATE_SYMB_CLASS_EL,
_NL_NUM_LC_COLLATE,
/* LC_CTYPE category: character classification.
_NL_CTYPE_MAP_NAMES,
_NL_CTYPE_WIDTH,
_NL_CTYPE_MB_CUR_MAX,
+ _NL_CTYPE_CODESET_NAME,
_NL_NUM_LC_CTYPE,
/* LC_MONETARY category: formatting of monetary quantities.
The string returned will not change until `setlocale' is called;
it is usually in read-only memory and cannot be modified. */
-extern char *nl_langinfo __P ((nl_item item));
+extern char *nl_langinfo __P ((nl_item __item));
__END_DECLS