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

📄 perl.c

📁 elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, elinks也是gentoo安装过程中默认使用的浏览器, 这是elinks源代码
💻 C
字号:
/* Perl module */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "elinks.h"#include "main/module.h"#include "scripting/perl/core.h"#include "scripting/perl/hooks.h"struct module perl_scripting_module = struct_module(	/* name: */		"Perl",	/* options: */		NULL,	/* hooks: */		perl_scripting_hooks,	/* submodules: */	NULL,	/* data: */		NULL,	/* init: */		init_perl,	/* done: */		cleanup_perl);

⌨️ 快捷键说明

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