mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-07 13:50:07 +00:00
17427edd1f
2000-11-20 Ulrich Drepper <drepper@redhat.com> * csu/gmon-start.c: Always have prototype for __gmon_start. * csu/version.c: Add prototypes for __libc_print_version and __libc_main. * iconv/gconv.c: Include gconv_int.h and gconv.h. * iconv/gconv.h (struct __gconv_step): Remove const from __from_name and __to_name. * iconv/gconv_builtin.h: Add ASCII module definitions. * iconv/gconv_conf.c (__gconv_path_elem): Remove const. (add_module): Add cast to avoid warning. Rework construction of strings for new module. * iconv/gconv_db.c (__gconv_alias_compare): Make s1 and s2 const. (derivation_compare): Likewise. * iconv/gconv_dl.c (do_release_shlib): Remove const from nodep. (__gconv_release_shlib): Cast do_release_shlib as parameter for twalk. * iconv/gconv_int.h (__gconv_path_elem): Remove const. (struct gconv_alias): Remove const from fromname and toname. * iconv/gconv_simple.c: Include gconv_builtin.h to get prototypes for loop functions. (internal_ucs4_loop): Use correct const-ness. (ucs4_internal_loop): Likewise. (internal_ucs4le_loop): Likewise. (ucs4le_internal_loop_single): Likewise. * iconv/gconv_trans.c (__gconv_transliterate): Make from_idx, from_tbl, to_idx, to_tbl, winbuf, winbufend const. Change casts in assignments appropriately. (struct known_trans): Remove const from fname. (trans_compare): Make s1 and s2 const. * iconv/loop.c (LOOPFC): Make outend parameter const. Add cast to avoid warning. * iconv/skeleton.c: Remove cast in calls of loop functions. * iconvdata/gconv-modules: Remove US-ASCII definitions. * iconvdata/iso646.c: Remove US_ASCII support. * include/set-hooks.h (DEFINE_HOOK): Also generate prototype. * include/unistd.h: Add __libc_check_standard_fds prototype. * string/bits/string2.h (__mempcpy_args): Add const to casts. * sysdeps/generic/initfini.c: Add prototypes for dummy, _init, and _fini. * sysdeps/generic/libc-start.c: Add prototype for __libc_start_main. * sysdeps/i386/i486/bits/string.h (strcmp): Add const to casts. * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Add cast to avoid warning. * sysdeps/unix/sysv/linux/init-first.c: Add prototypes for __libc_init_first and _dl_start. * sysdeps/unix/sysv/linux/mips/clone.S: Fix comments.
132 lines
5.0 KiB
C
132 lines
5.0 KiB
C
/* Builtin transformations.
|
|
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
|
|
|
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.
|
|
|
|
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. */
|
|
|
|
BUILTIN_ALIAS ("UCS4//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("UCS-4//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("UCS-4BE//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("CSUCS4//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("ISO-10646//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("10646-1:1993//", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("10646-1:1993/UCS4/", "ISO-10646/UCS4/")
|
|
BUILTIN_ALIAS ("OSF00010104//", "ISO-10646/UCS4/") /* level 1 */
|
|
BUILTIN_ALIAS ("OSF00010105//", "ISO-10646/UCS4/") /* level 2 */
|
|
BUILTIN_ALIAS ("OSF00010106//", "ISO-10646/UCS4/") /* level 3 */
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "ISO-10646/UCS4/", 1, "=INTERNAL->ucs4",
|
|
__gconv_transform_internal_ucs4, NULL, NULL,
|
|
4, 4, 4, 4)
|
|
BUILTIN_TRANSFORMATION ("ISO-10646/UCS4/", "INTERNAL", 1, "=ucs4->INTERNAL",
|
|
__gconv_transform_ucs4_internal, NULL, NULL,
|
|
4, 4, 4, 4)
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "UCS-4LE//", 1, "=INTERNAL->ucs4le",
|
|
__gconv_transform_internal_ucs4le, NULL, NULL,
|
|
4, 4, 4, 4)
|
|
BUILTIN_TRANSFORMATION ("UCS-4LE//", "INTERNAL", 1, "=ucs4le->INTERNAL",
|
|
__gconv_transform_ucs4le_internal, NULL, NULL,
|
|
4, 4, 4, 4)
|
|
|
|
BUILTIN_ALIAS ("WCHAR_T//", "INTERNAL")
|
|
|
|
BUILTIN_ALIAS ("UTF8//", "ISO-10646/UTF8/")
|
|
BUILTIN_ALIAS ("UTF-8//", "ISO-10646/UTF8/")
|
|
BUILTIN_ALIAS ("ISO-IR-193//", "ISO-10646/UTF8/")
|
|
BUILTIN_ALIAS ("OSF05010001//", "ISO-10646/UTF8/")
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "ISO-10646/UTF8/", 1, "=INTERNAL->utf8",
|
|
__gconv_transform_internal_utf8, NULL, NULL,
|
|
4, 4, 1, 6)
|
|
|
|
BUILTIN_TRANSFORMATION ("ISO-10646/UTF-8/", "INTERNAL", 1, "=utf8->INTERNAL",
|
|
__gconv_transform_utf8_internal, NULL, NULL,
|
|
1, 6, 4, 4)
|
|
BUILTIN_TRANSFORMATION ("ISO-10646/UTF8/", "INTERNAL", 1, "=utf8->INTERNAL",
|
|
__gconv_transform_utf8_internal, NULL, NULL,
|
|
1, 6, 4, 4)
|
|
|
|
BUILTIN_ALIAS ("UCS2//", "ISO-10646/UCS2/")
|
|
BUILTIN_ALIAS ("UCS-2//", "ISO-10646/UCS2/")
|
|
BUILTIN_ALIAS ("OSF00010100//", "ISO-10646/UCS2/") /* level 1 */
|
|
BUILTIN_ALIAS ("OSF00010101//", "ISO-10646/UCS2/") /* level 2 */
|
|
BUILTIN_ALIAS ("OSF00010102//", "ISO-10646/UCS2/") /* level 3 */
|
|
|
|
BUILTIN_TRANSFORMATION ("ISO-10646/UCS2/", "INTERNAL", 1, "=ucs2->INTERNAL",
|
|
__gconv_transform_ucs2_internal, NULL, NULL,
|
|
2, 2, 4, 4)
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "ISO-10646/UCS2/", 1, "=INTERNAL->ucs2",
|
|
__gconv_transform_internal_ucs2, NULL, NULL,
|
|
4, 4, 2, 2)
|
|
|
|
|
|
BUILTIN_ALIAS ("ANSI_X3.4//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("ISO-IR-6//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("ANSI_X3.4-1986//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("ISO_646.IRV:1991//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("ASCII//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("ISO646-US//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("US-ASCII//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("US//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("IBM367//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("CP367//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("CSASCII//", "ANSI_X3.4-1968//")
|
|
BUILTIN_ALIAS ("OSF00010020//", "ANSI_X3.4-1968//")
|
|
|
|
BUILTIN_TRANSFORMATION ("ANSI_X3.4-1968//", "INTERNAL", 1, "=ascii->INTERNAL",
|
|
__gconv_transform_ascii_internal, NULL, NULL,
|
|
4, 4, 1, 1)
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "ANSI_X3.4-1968//", 1, "=INTERNAL->ascii",
|
|
__gconv_transform_internal_ascii, NULL, NULL,
|
|
4, 4, 1, 1)
|
|
|
|
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
BUILTIN_ALIAS ("UNICODEBIG//", "ISO-10646/UCS2/")
|
|
BUILTIN_ALIAS ("UCS-2BE//", "ISO-10646/UCS2/")
|
|
|
|
BUILTIN_ALIAS ("UCS-2LE//", "UNICODELITTLE//")
|
|
|
|
BUILTIN_TRANSFORMATION ("UNICODELITTLE//", "INTERNAL", 1,
|
|
"=ucs2reverse->INTERNAL",
|
|
__gconv_transform_ucs2reverse_internal, NULL, NULL,
|
|
2, 2, 4, 4)
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "UNICODELITTLE//", 1,
|
|
"=INTERNAL->ucs2reverse",
|
|
__gconv_transform_internal_ucs2reverse, NULL, NULL,
|
|
4, 4, 2, 2)
|
|
#else
|
|
BUILTIN_ALIAS ("UNICODELITTLE//", "ISO-10646/UCS2/")
|
|
BUILTIN_ALIAS ("UCS-2LE//", "ISO-10646/UCS2/")
|
|
|
|
BUILTIN_ALIAS ("UCS-2BE//", "UNICODEBIG//")
|
|
|
|
BUILTIN_TRANSFORMATION ("UNICODEBIG//", "INTERNAL", 1,
|
|
"=ucs2reverse->INTERNAL",
|
|
__gconv_transform_ucs2reverse_internal, NULL, NULL,
|
|
2, 2, 4, 4)
|
|
|
|
BUILTIN_TRANSFORMATION ("INTERNAL", "UNICODEBIG//", 1,
|
|
"=INTERNAL->ucs2reverse",
|
|
__gconv_transform_internal_ucs2reverse, NULL, NULL,
|
|
4, 4, 2, 2)
|
|
#endif
|