Mercurial > hg > Applications > mh
view uip/mhl.c @ 4:6bc439d68ff9 utf-8-support
*** empty log message ***
author | kono |
---|---|
date | Wed, 20 Apr 2005 14:39:40 +0900 |
parents | bce86c4163a3 |
children | 441a2190cfae |
line wrap: on
line source
/* mhl.c - the MH message listing program */ #ifndef lint static char ident[] = "@(#)$Id$"; #endif /* lint */ #ifdef LOCALE #include <locale.h> #endif main (argc, argv) int argc; char **argv; { #ifdef LOCALE setlocale(LC_ALL, ""); #endif #ifdef JAPAN ml_init(); #endif /* JAPAN */ done (mhl (argc, argv)); } /* */ /* Cheat: we are loaded with adrparse, which wants a routine called OfficialName(). We call adrparse:getm() with the correct arguments to prevent OfficialName() from being called. Hence, the following is to keep the loader happy. */ char *OfficialName (name) register char *name; { return name; }