mhl.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 25 行

C
25
字号
/* mhl.c - the MH message listing program */#include <stdio.h>main (argc, argv)int     argc;char  **argv;{    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;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?