1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/scripting/perl/core.h

25 lines
338 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>
#ifdef __cplusplus
extern "C" {
#endif
struct module;
extern PerlInterpreter *my_perl;
void init_perl(struct module *module);
void cleanup_perl(struct module *module);
#ifdef __cplusplus
}
#endif
#endif