⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 print.c

📁 harvest是一个下载html网页得机器人
💻 C
字号:
/* * print.c - debugging printout routines * * Copyright (c) Ian F. Darwin, 1987. * Written by Ian F. Darwin. * * This software is not subject to any license of the American Telephone * and Telegraph Company or of the Regents of the University of California. * * Permission is granted to anyone to use this software for any purpose on * any computer system, and to alter it and redistribute it freely, subject * to the following restrictions: * * 1. The author is not responsible for the consequences of use of this *    software, no matter how awful, even if they arise from flaws in it. * * 2. The origin of this software must not be misrepresented, either by *    explicit claim or by omission.  Since few users ever read sources, *    credits must appear in the documentation. * * 3. Altered versions must be plainly marked as such, and must not be *    misrepresented as being the original software.  Since few users *    ever read sources, credits must appear in the documentation. * * 4. This notice may not be removed or altered. */#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <errno.h>#include "file.h"#include "autoconf.h"#ifndef	lintstatic char *moduleid ="@(#)/projects/agile/cvs/harvest/src/gatherer/essence/file/print.c,v 1.4 1996/01/05 00:47:59 duane Exp";#endif /* lint */#define MAXSTR		500extern char *progname;extern char *magicfile;extern int debug, nmagic;	/* number of valid magic[]s */extern void showstr();mdump(m)     struct magic *m;{	(void) printf("%d\t%d\t%d\t%c\t",	    (int) m->contflag,	    (int) m->offset,	    (int) m->type,	    m->reln);	if (m->type == STRING)		showstr(m->value.s);	else		(void) printf("%d", (int) m->value.l);	(void) printf("\t%s", m->desc);	(void) putchar('\n');	return 0;}/* * error - print best error message possible and exit *//*ARGSUSED1 *//*VARARGS */void error(s1, s2)     char *s1, *s2;{	warning(s1, s2);	exit(1);}/*ARGSUSED1 *//*VARARGS */warning(f, a)     char *f, *a;{	int myerrno;	myerrno = errno;	/* cuz we use stdout for most, stderr here */	(void) fflush(stdout);	if (progname != NULL) {		(void) fputs(progname, stderr);		(void) putc(':', stderr);		(void) putc(' ', stderr);	}	(void) fprintf(stderr, f, a);        (void) fprintf(stderr, " (%s)", strerror(myerrno));	putc('\n', stderr);	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -