1#!/bin/sh
2if test $# -ne 2 ; then
3	echo "Usage: $0 <charmap file> <CHARSET NAME>"
4	exit 1
5fi
6
7CHARMAP=$1
8CHARSETNAME=$2
9
10echo "/* "
11echo " * Conversion table for $CHARSETNAME charset "
12echo " * "
13echo " * Conversion tables are generated using $CHARMAP table "
14echo " * and source/script/gen-8bit-gap.sh script "
15echo " * "
16echo " * This program is free software; you can redistribute it and/or modify "
17echo " * it under the terms of the GNU General Public License as published by "
18echo " * the Free Software Foundation; either version 3 of the License, or "
19echo " * (at your option) any later version. "
20echo " *  "
21echo " * This program is distributed in the hope that it will be useful,"
22echo " * but WITHOUT ANY WARRANTY; without even the implied warranty of "
23echo " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
24echo " * GNU General Public License for more details. "
25echo " *  "
26echo " * You should have received a copy of the GNU General Public License "
27echo " * along with this program; if not, see <http://www.gnu.org/licenses/>."
28echo " */"
29
30echo '#include "includes.h"'
31echo
32echo "static const uint16 to_ucs2[256] = {"
33cat "$CHARMAP" | @AWK@ -f @srcdir@/script/gen-8bit-gap.awk
34echo "};"
35echo
36echo "static const struct charset_gap_table from_idx[] = {"
37sed -ne 's/^<U\(....\).*/\1/p' \
38    "$CHARMAP" | sort -u | @AWK@ -f @srcdir@/script/gap.awk
39echo "  { 0xffff, 0xffff, 0 }"
40echo "};"
41echo
42echo "static const unsigned char from_ucs2[] = {"
43sed -ne 's/^<U\(....\)>[[:space:]]*.x\(..\).*/\1 \2/p' \
44    "$CHARMAP" | sort -u | @AWK@ -f @srcdir@/script/gaptab.awk
45echo "};"
46echo 
47echo "SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP($CHARSETNAME)"
48echo
49