/
niceSOFT
/
patch
Обзор
Документация
Войти
/
niceSOFT
/
patch
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.6
src/version.c
27 строк
779 B
Andreas Gruenbacher
Move all source and header files into src/
05 апр 2009, 10:12
05 апр 2009, 10:12
85cd8a4
Код
Авторство
О чём код?
/* Print the version number. */ #define XTERN extern #include <common.h> #undef XTERN #define XTERN #include <version.h> static char const copyright_string[] = "\ Copyright (C) 1988 Larry Wall\n\ Copyright (C) 2003 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 and Paul Eggert"; void version (void) { printf ("%s %s\n%s\n\n%s\n\n%s\n", PACKAGE_NAME, PACKAGE_VERSION, copyright_string, free_software_msgid, authorship_msgid); }