mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
319 B
C
15 lines
319 B
C
|
#include "ruby.h"
|
||
|
|
||
|
static VALUE
|
||
|
bug_rb_interned_str_dup(VALUE self, VALUE str)
|
||
|
{
|
||
|
Check_Type(str, T_STRING);
|
||
|
return rb_interned_str(RSTRING_PTR(str), RSTRING_LEN(str));
|
||
|
}
|
||
|
|
||
|
void
|
||
|
Init_string_rb_interned_str(VALUE klass)
|
||
|
{
|
||
|
rb_define_singleton_method(klass, "rb_interned_str_dup", bug_rb_interned_str_dup, 1);
|
||
|
}
|