mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
17 lines
269 B
C
17 lines
269 B
C
|
|
||
|
#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
|