version.c
来自「这是一款很好用的工具包」· C语言 代码 · 共 28 行
C
28 行
/* * version.c -- * Print version information * */#ifndef lintstatic char Copyright[] = "Copyright (c) 2004 SRI International. All Rights Reserved.";static char RcsId[] = "@(#)$Header: /home/srilm/devel/misc/src/RCS/version.c,v 1.1 2004/12/03 04:24:36 stolcke Exp $";#endif#include <stdio.h>#include "version.h"#include "SRILMversion.h"voidprintVersion(const char *rcsid){ printf("SRILM release %s", SRILM_RELEASE);#ifndef EXCLUDE_CONTRIB printf(" (with third-party contributions)");#endif /* EXCLUDE_CONTRIB_END */ printf("\n\nProgram version %s\n", rcsid); puts(SRILM_COPYRIGHT);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?