Mercurial > hg > Applications > mh
comparison uip/mhl.c @ 0:bce86c4163a3
Initial revision
author | kono |
---|---|
date | Mon, 18 Apr 2005 23:46:02 +0900 |
parents | |
children | 441a2190cfae |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:bce86c4163a3 |
---|---|
1 /* mhl.c - the MH message listing program */ | |
2 #ifndef lint | |
3 static char ident[] = "@(#)$Id$"; | |
4 #endif /* lint */ | |
5 #ifdef LOCALE | |
6 #include <locale.h> | |
7 #endif | |
8 | |
9 main (argc, argv) | |
10 int argc; | |
11 char **argv; | |
12 { | |
13 #ifdef LOCALE | |
14 setlocale(LC_ALL, ""); | |
15 #endif | |
16 #ifdef JAPAN | |
17 ml_init(); | |
18 #endif /* JAPAN */ | |
19 done (mhl (argc, argv)); | |
20 } | |
21 | |
22 /* */ | |
23 | |
24 /* Cheat: we are loaded with adrparse, which wants a routine called | |
25 OfficialName(). We call adrparse:getm() with the correct arguments | |
26 to prevent OfficialName() from being called. Hence, the following | |
27 is to keep the loader happy. | |
28 */ | |
29 | |
30 char *OfficialName (name) | |
31 register char *name; | |
32 { | |
33 return name; | |
34 } |