zipcloak.c
来自「汇编源码大全 有各种汇编源码 希望对你有所帮助」· C语言 代码 · 共 33 行
C
33 行
/* Dummy version of Info-ZIP zipcloak.c encryption code. See "Where" file for sites from which to obtain full encryption sources. */#include "tailor.h"void warn OF((char *msg1, char *msg2));void err OF((int code, char *msg));int main OF((void));void warn(msg1, msg2) char *msg1, *msg2; /* message strings juxtaposed in output */{ fprintf(stderr, "zipcloak warning: %s%s\n", msg1, msg2);}void err(code, msg) int code; /* error code from the ZE_ class */ char *msg; /* message about how it happened */{ if (code) warn(msg, "");}int main(){ fprintf(stderr, "\This version of ZipCloak does not support encryption. Get zcrypt20.zip (or\n\a later version) and recompile. The Info-ZIP file `Where' lists sites.\n"); exit(1); return 1; /* avoid warning */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?