version.c
来自「这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易」· C语言 代码 · 共 31 行
C
31 行
/* Print the version number. *//* $Id: version.c,v 1.5 1997/05/21 18:29:20 eggert Exp $ */#define XTERN extern#include <common.h>#undef XTERN#define XTERN#include <patchlevel.h>#include <version.h>static char const copyright_string[] = "\Copyright 1988 Larry Wall\n\Copyright 1997 Free Software Foundation, Inc.";static char const free_software_msgid[] = "\This program comes with NO WARRANTY, to the extent permitted by law.\n\You may redistribute copies of this program\n\under the terms of the GNU General Public License.\n\For more information about these matters, see the file named COPYING.";static char const authorship_msgid[] = "\written by Larry Wall with lots o' patches by Paul Eggert";voidversion(){ printf ("%s %s\n%s\n\n%s\n\n%s\n", program_name, PATCH_VERSION, copyright_string, free_software_msgid, authorship_msgid);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?