mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b271a8c98d
* string.c (rb_string_value_cstr): fill minimum length of the encoding as the terminator. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
26 lines
498 B
C
26 lines
498 B
C
#include "ruby.h"
|
|
#include "ruby/encoding.h"
|
|
|
|
static VALUE
|
|
bug_str_cstr_term(VALUE str)
|
|
{
|
|
long len;
|
|
char *s;
|
|
int c;
|
|
rb_encoding *enc;
|
|
|
|
rb_str_modify(str);
|
|
len = RSTRING_LEN(str);
|
|
RSTRING_PTR(str)[len] = 'x';
|
|
s = StringValueCStr(str);
|
|
rb_gc();
|
|
enc = rb_enc_get(str);
|
|
c = rb_enc_codepoint(&s[len], &s[len+rb_enc_mbminlen(enc)], enc);
|
|
return INT2NUM(c);
|
|
}
|
|
|
|
void
|
|
Init_cstr(VALUE klass)
|
|
{
|
|
rb_define_method(klass, "cstr_term", bug_str_cstr_term, 0);
|
|
}
|