📄 print.c
字号:
/* * Roadrunner/pk * Copyright (C) 1989-2001 Cornfed Systems, Inc. * * The Roadrunner/pk operating system is free software; you can * redistribute and/or modify it under the terms of the GNU General * Public License, version 2, as published by the Free Software * Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * More information about the Roadrunner/pk operating system of * which this file is a part is available on the World-Wide Web * at: http://www.cornfed.com. * */#include <ctype.h>#include <stdio.h>#include <stdlib.h>#include <sys.h>#include <sys/types.h>#include <sys/print.h>void bufdump(char *buf, int size);voidkprintf(const char *fmt, ...){ va_list args; va_start(args, fmt); print(NULL, NULL, fmt, args);}intsprintf(char *s, const char *fmt, ...){ va_list args; int pos = 0; va_start(args, fmt); print(s, &pos, fmt, args); return 0;}#define LEN 8voidbufdump(char *buf, int size){ u_char *line; int i, j, lines; lines = (size + LEN - 1) / LEN; for (i = 0; i < lines; i++) { line = (u_char *) buf + i * LEN; kprintf("%08x ", (u_int) buf + i * LEN); for (j = 0; j < LEN; j++) kprintf("%02x ", line[j]); kprintf(" "); for (j = 0; j < LEN; j++) if (isprint(line[j])) kprintf("%c", (char) line[j]); else kprintf("."); kprintf("\n"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -