mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
277 B
C
15 lines
277 B
C
|
#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);
|
||
|
}
|