1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/joyme2.0/libiconv-1.14/libcharset
2024-07-22 01:58:46 -03:00
..
autoconf Add gpl 2024-07-22 01:58:46 -03:00
build-aux Add gpl 2024-07-22 01:58:46 -03:00
djgpp Add gpl 2024-07-22 01:58:46 -03:00
include Add gpl 2024-07-22 01:58:46 -03:00
lib Add gpl 2024-07-22 01:58:46 -03:00
m4 Add gpl 2024-07-22 01:58:46 -03:00
tools Add gpl 2024-07-22 01:58:46 -03:00
AUTHORS Add gpl 2024-07-22 01:58:46 -03:00
autogen.sh Add gpl 2024-07-22 01:58:46 -03:00
ChangeLog Add gpl 2024-07-22 01:58:46 -03:00
config.h.in Add gpl 2024-07-22 01:58:46 -03:00
configure Add gpl 2024-07-22 01:58:46 -03:00
configure.ac Add gpl 2024-07-22 01:58:46 -03:00
COPYING.LIB Add gpl 2024-07-22 01:58:46 -03:00
DEPENDENCIES Add gpl 2024-07-22 01:58:46 -03:00
HACKING Add gpl 2024-07-22 01:58:46 -03:00
INSTALL.generic Add gpl 2024-07-22 01:58:46 -03:00
INTEGRATE Add gpl 2024-07-22 01:58:46 -03:00
Makefile.devel Add gpl 2024-07-22 01:58:46 -03:00
Makefile.in Add gpl 2024-07-22 01:58:46 -03:00
NEWS Add gpl 2024-07-22 01:58:46 -03:00
README Add gpl 2024-07-22 01:58:46 -03:00
README.djgpp Add gpl 2024-07-22 01:58:46 -03:00
README.woe32 Add gpl 2024-07-22 01:58:46 -03:00

          LIBCHARSET - portable character set determination library

This library provides a function which determines the character set / encoding
of text in the currently selected locale (the LC_CTYPE locale facet).

It is useful for portable programs which need to process text in other
encodings and locales than the currently selected one. Possible uses:

  * Use of Unicode in POSIX compliant applications.
  * Conversion of text between the current locale's encoding and UTF-8 (or
    any other given encoding).
  * Mail agents.

In theory, this would be very simple: POSIX provides the nl_langinfo function,
in such a way that

                  nl_langinfo (CODESET)

returns the encoding name. But the nl_langinfo function still does not exist
on some systems, and on those where it exists it returns unstandardized
variations of the encoding names, like (on Solaris) "PCK" for "Shift_JIS".

This library fixes these flaws and provides a function

       const char * locale_charset (void);

It determines the current locale's character encoding, and canonicalizes it
into one of the canonical names listed in config.charset. The result must
not be freed; it is statically allocated. If the canonical name cannot be
determined, the result is a non-canonical name.


Installation:

As usual for GNU packages:

    $ ./configure --prefix=/usr/local
    $ make
    $ make install


This library is used in
  GNU coreutils
  GNU gettext
  GNU clisp


To integrate this library into your package:
- Either from this package. See file INTEGRATE.
- Or from gnulib. See
  <http://www.gnu.org/software/gnulib/MODULES.html#module=localcharset>


Distribution:
    The libcharset directory of
    ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.8.tar.gz

Homepage:
    http://www.haible.de/bruno/packages-libcharset.html


Bruno Haible <bruno@clisp.org>