1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/-test-/class/class2name.c

15 lines
277 B
C
Raw Normal View History

#include <ruby/ruby.h>
static VALUE
class2name(VALUE self, VALUE klass)
{
const char *name = rb_class2name(klass);
return name ? rb_str_new_cstr(name) : Qnil;
}
void
Init_class2name(VALUE klass)
{
rb_define_singleton_method(klass, "class2name", class2name, 1);
}