Sha256: 2f99afabc29544e935e99c87dcc93db9c93188fbc5099fafbda05949ad8435d1
Contents?: true
Size: 376 Bytes
Versions: 51
Compression:
Stored size: 376 Bytes
Contents
struct hoge * rb_fuga(VALUE obj) { return Qtrue; } /* * Hello Mars */ VALUE rb_hello_mars(VALUE obj, VALUE n) { return Qtrue; } void Init_Multifile(void) { rb_cMultifile = rb_define_class("Multifile", rb_cObject); rb_define_method(rb_cMultifile, "extra", rb_extra, 1); /* in extra.c */ rb_define_method(rb_cMultifile, "hello_mars", rb_hello_mars, 1); }
Version data entries
51 entries across 45 versions & 7 rubygems