1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/scripting/perl/core.h

17 lines
269 B
C
Raw Normal View History

#ifndef EL__SCRIPTING_PERL_CORE_H
#define EL__SCRIPTING_PERL_CORE_H
#include <EXTERN.h>
#include <perl.h>
#include <perlapi.h>
struct module;
extern PerlInterpreter *my_perl;
void init_perl(struct module *module);
void cleanup_perl(struct module *module);
#endif