Add routines for integer byte order conversions, floating point format
[pspp-builds.git] / src / libpspp / legacy-encoding.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #ifndef LIBPSPP_LEGACY_ENCODING
21 #define LIBPSPP_LEGACY_ENCODING 1
22
23 #include <stddef.h>
24 #include <libpspp/compiler.h>
25
26 /* A legacy character encoding.
27    This exists only to handle the specific legacy EBCDIC-to-ASCII
28    recoding that MODE=360 file handles perform. */
29 enum legacy_encoding
30   {
31     LEGACY_ASCII,         /* ASCII or similar character set. */
32     LEGACY_EBCDIC,        /* IBM EBCDIC character set. */
33
34     /* Native character set. */
35 #if 'A' == 0x41
36     LEGACY_NATIVE = LEGACY_ASCII
37 #elif 'A' == 0xc1
38     LEGACY_NATIVE = LEGACY_EBCDIC
39 #else
40 #error Cannot detect native character set.
41 #endif
42   };
43
44 void legacy_recode (enum legacy_encoding, const char *src,
45                     enum legacy_encoding, char *dst, size_t);
46 char legacy_to_native (enum legacy_encoding from, char) PURE_FUNCTION;
47 char legacy_from_native (enum legacy_encoding to, char) PURE_FUNCTION;
48
49 #endif /* libpspp/legacy-encoding.h */