mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7a6113d6b6
RSTRING_PTR. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
345 B
C
20 lines
345 B
C
#include "ruby.h"
|
|
|
|
static VALUE
|
|
bug_str_cstr_term(VALUE str)
|
|
{
|
|
long len;
|
|
char *s;
|
|
rb_str_modify(str);
|
|
len = RSTRING_LEN(str);
|
|
RSTRING_PTR(str)[len] = 'x';
|
|
s = StringValueCStr(str);
|
|
rb_gc();
|
|
return INT2NUM(s[len]);
|
|
}
|
|
|
|
void
|
|
Init_cstr(VALUE klass)
|
|
{
|
|
rb_define_method(klass, "cstr_term", bug_str_cstr_term, 0);
|
|
}
|