virusdat.c
来自「32-bit 循环冗余校验的 C和PASCAL 应用程序」· C语言 代码 · 共 27 行
C
27 行
/*
VIRUSDAT.C
Kevin Dean
Fairview Mall P.O. Box 55074
1800 Sheppard Avenue East
Willowdale, Ontario
CANADA M2J 5B9
November 16, 1990
This module defines the _viruscrc variable used by the anti-virus CRC
check. The default search string used by the CRCSET.EXE program is DEAN_CRC
but may be changed by either modifying this file or defining another instance
of _viruscrc in another file earlier in the program link.
This code is public domain.
*/
#include "viruscrc.h"
const union filecrc _viruscrc =
{
'D', 'E', 'A', 'N', '_', 'C', 'R', 'C'
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?