📄 util.c
字号:
/* * $Source: /mit/kerberos/src/lib/des/RCS/util.c,v $ * $Author: jtkohl $ * * Copyright 1988 by the Massachusetts Institute of Technology. * * For copying and distribution information, please see the file * <mit-copyright.h>. * * Miscellaneous debug printing utilities */#ifndef lintstatic char rcsid_util_c[] ="$Header: util.c,v 4.8 89/05/30 21:44:12 jtkohl Exp $";#endif lint#include <mit-copyright.h>#include <stdio.h>#include <des.h>des_cblock_print_file(x, fp) des_cblock *x; FILE *fp;{ unsigned char *y = (unsigned char *) x; register int i = 0; fprintf(fp," 0x { "); while (i++ < 8) { fprintf(fp,"%x",*y++); if (i < 8) fprintf(fp,", "); } fprintf(fp," }");}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -