mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
284 B
C
11 lines
284 B
C
#include "ruby.h"
|
|
|
|
#define init(n) {void Init_econv_##n(VALUE klass); Init_econv_##n(klass);}
|
|
|
|
void
|
|
Init_econv(void)
|
|
{
|
|
VALUE mBug = rb_define_module("Bug");
|
|
VALUE klass = rb_define_class_under(mBug, "EConv", rb_path2class("Encoding::Converter"));
|
|
TEST_INIT_FUNCS(init);
|
|
}
|