diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2004-12-30 12:20:28 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2004-12-30 12:20:28 -0500 |
commit | bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79 (patch) | |
tree | dd916bd7c1040bd69a1fe9f9ed1aa98d44ca623d /src/chrtrans | |
parent | b52ca53f448d0f9c01708a6ce2b03be3a71d3993 (diff) | |
download | lynx-snapshots-bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79.tar.gz |
snapshot of project "lynx", label v2-8-6dev_9
Diffstat (limited to 'src/chrtrans')
-rw-r--r-- | src/chrtrans/makeuctb.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/chrtrans/makeuctb.c b/src/chrtrans/makeuctb.c index a5a1c122..a2f0f5d6 100644 --- a/src/chrtrans/makeuctb.c +++ b/src/chrtrans/makeuctb.c @@ -135,10 +135,10 @@ static int getunicode(char **p0) /* * Massive overkill, but who cares? */ -unicode unitable[MAX_FONTLEN][255]; -int unicount[MAX_FONTLEN]; +static unicode unitable[MAX_FONTLEN][255]; +static int unicount[MAX_FONTLEN]; -struct unimapdesc_str themap_str = +static struct unimapdesc_str themap_str = {0, NULL, 0, 0}; static const char *tblname; @@ -239,12 +239,12 @@ static void addpair(int fp, int un) /* otherwise: ignore */ } -char this_MIMEcharset[UC_MAXLEN_MIMECSNAME + 1]; -char this_LYNXcharset[UC_MAXLEN_LYNXCSNAME + 1]; -char id_append[UC_MAXLEN_ID_APPEND + 1] = "_"; -int this_isDefaultMap = -1; -int useDefaultMap = 1; -int lowest_eight = 999; +static char this_MIMEcharset[UC_MAXLEN_MIMECSNAME + 1]; +static char this_LYNXcharset[UC_MAXLEN_LYNXCSNAME + 1]; +static char id_append[UC_MAXLEN_ID_APPEND + 1] = "_"; +static int this_isDefaultMap = -1; +static int useDefaultMap = 1; +static int lowest_eight = 999; int main(int argc, char **argv) { |