Cast to (const char *) in strrchr calls
[elinks.git] / src / scripting / ruby / ruby.c
blobef2ca794e111fcce770cd5991a0d3828a2c2f5a8
1 /* Ruby 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/ruby/core.h"
12 #include "scripting/ruby/hooks.h"
15 struct module ruby_scripting_module = struct_module(
16 /* name: */ N_("Ruby"),
17 /* options: */ NULL,
18 /* events: */ ruby_scripting_hooks,
19 /* submodules: */ NULL,
20 /* data: */ NULL,
21 /* init: */ init_ruby,
22 /* done: */ NULL