From 7b358424ebad9349421acd533c2fa1cbf6cf3e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 28 Dec 2016 16:52:56 +0100 Subject: Initial import of xtrkcad version 1:4.0.2-2 --- app/tools/halibut/charset/enum.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app/tools/halibut/charset/enum.c (limited to 'app/tools/halibut/charset/enum.c') diff --git a/app/tools/halibut/charset/enum.c b/app/tools/halibut/charset/enum.c new file mode 100644 index 0000000..5a7f0f0 --- /dev/null +++ b/app/tools/halibut/charset/enum.c @@ -0,0 +1,28 @@ +/* + * enum.c - enumerate all charsets defined by the library. + * + * This file maintains a list of every other source file which + * contains ENUM_CHARSET definitions. It #includes each one with + * ENUM_CHARSETS defined, which causes those source files to do + * nothing at all except call the ENUM_CHARSET macro on each + * charset they define. + * + * This file in turn is included from various other places, with + * the ENUM_CHARSET macro defined to various different things. This + * allows us to have multiple implementations of the master charset + * lookup table (a static one and a dynamic one). + */ + +#define ENUM_CHARSETS +#include "sbcsdat.c" +#include "utf8.c" +#include "utf7.c" +#include "utf16.c" +#include "euc.c" +#include "iso2022.c" +#include "iso2022s.c" +#include "big5enc.c" +#include "shiftjis.c" +#include "hz.c" +#include "cp949.c" +#undef ENUM_CHARSETS -- cgit v1.2.3