diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-06-18 10:33:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-06-18 10:33:29 +0000 |
commit | 0c2b5752e3b9d82282848aa33337319ed1bc1818 (patch) | |
tree | fb0f2d95b98639446b076cdb3fdf2f560c7e85dc /iconvdata/macintosh.c | |
parent | 46827b5cdec911f5c267b780d044086ee602097b (diff) | |
download | glibc-0c2b5752e3b9d82282848aa33337319ed1bc1818.tar.gz glibc-0c2b5752e3b9d82282848aa33337319ed1bc1818.tar.xz glibc-0c2b5752e3b9d82282848aa33337319ed1bc1818.zip |
Update.
1998-06-18 10:26 Ulrich Drepper <drepper@cygnus.com> * iconvdata/Makefile (modules): Add MACINTOSH. (MACINTOSH-routines): New variable. (distribute): Add macintosh.c. (awk-generated-headers): Add macintosh.h. Add rule for macintosh.h generation. * iconvdata/gconv-modules: Add definitions for MACINTOSH. * iconvdata/macintosh.c: New file.
Diffstat (limited to 'iconvdata/macintosh.c')
-rw-r--r-- | iconvdata/macintosh.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/iconvdata/macintosh.c b/iconvdata/macintosh.c new file mode 100644 index 0000000000..fba1cbdc97 --- /dev/null +++ b/iconvdata/macintosh.c @@ -0,0 +1,29 @@ +/* Conversion from and to MACINTOSH. + Copyright (C) 1998 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. + + 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. */ + +#include <stdint.h> + +/* Get the conversion table. */ +#define TABLES <macintosh.h> + +#define CHARSET_NAME "MACINTOSH//" +#define HAS_HOLES 0 /* All 256 character are defined. */ + +#include <8bit-gap.c> |