iconv: Bail out of the loop when an illegal sequence of bytes occurs.
[elinks/elinks-j605.git] / src / scripting / perl / perl.c
blob87c2b0969398ae27dd7dab7ca58bf66150fada75
1 /* Perl module */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include "elinks.h"
9 #include "intl/gettext/libintl.h"
10 #include "main/module.h"
11 #include "scripting/perl/core.h"
12 #include "scripting/perl/hooks.h"
15 struct module perl_scripting_module = struct_module(
16 /* name: */ N_("Perl"),
17 /* options: */ NULL,
18 /* hooks: */ perl_scripting_hooks,
19 /* submodules: */ NULL,
20 /* data: */ NULL,
21 /* init: */ init_perl,
22 /* done: */ cleanup_perl