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

📄 docdata.c

📁 一个很有名的浏览器
💻 C
字号:
/* The document->data tools *//* $Id: docdata.c,v 1.1 2003/11/18 22:18:12 pasky Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <stdlib.h>#include "elinks.h"#include "document/docdata.h"#include "document/document.h"#include "util/error.h"struct line *realloc_lines(struct document *document, int y){	assert(document);	if_assert_failed return NULL;	if (document->height <= y) {		if (!ALIGN_LINES(&document->data, document->height, y + 1))			return NULL;		document->height = y + 1;	}	return &document->data[y];}

⌨️ 快捷键说明

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