mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
67de10bfcb
According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines.
21 lines
471 B
C
21 lines
471 B
C
#include <mruby.h>
|
|
#include <stdio.h>
|
|
|
|
static mrb_value
|
|
mrb_c_method(mrb_state *mrb, mrb_value self)
|
|
{
|
|
puts("A C Extension");
|
|
return self;
|
|
}
|
|
|
|
void
|
|
mrb_c_and_ruby_extension_example_gem_init(mrb_state* mrb) {
|
|
struct RClass *class_cextension = mrb_define_module(mrb, "CRubyExtension");
|
|
mrb_define_class_method(mrb, class_cextension, "c_method", mrb_c_method, MRB_ARGS_NONE());
|
|
}
|
|
|
|
void
|
|
mrb_c_and_ruby_extension_example_gem_final(mrb_state* mrb) {
|
|
/* finalizer */
|
|
}
|