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

📄 mem.c

📁 harvest是一个下载html网页得机器人
💻 C
字号:
/*** Copyright (C) 1995, Enterprise Integration Technologies Corp.        ** All Rights Reserved.** Kevin Hughes, kevinh@eit.com ** 3/11/94*/#include "swish.h"#include "mem.h"#include "error.h"/* Error-checking malloc()...*/void *emalloc(i)     int i;{        void *p;         if ((p = (void *) malloc(i)) == NULL)                progerr("Ran out of memory (could not allocate enough)!");        return p;}void *erealloc(ptr, i)     void *ptr;     int i;{        void *p;         if ((p = (void *) realloc(ptr, i)) == NULL)                progerr("Ran out of memory (could not reallocate enough)!");        return p;}

⌨️ 快捷键说明

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