2011-07-07 02:44:46 -04:00
|
|
|
#include "ruby.h"
|
2011-07-07 22:08:29 -04:00
|
|
|
#include "ruby/encoding.h"
|
2011-07-07 02:44:46 -04:00
|
|
|
|
|
|
|
VALUE
|
|
|
|
bug_str_enc_associate(VALUE str, VALUE enc)
|
|
|
|
{
|
|
|
|
return rb_enc_associate(str, rb_to_encoding(enc));
|
|
|
|
}
|
|
|
|
|
2015-07-15 03:55:08 -04:00
|
|
|
VALUE
|
|
|
|
bug_str_encoding_index(VALUE self, VALUE str)
|
|
|
|
{
|
|
|
|
int idx = rb_enc_get_index(str);
|
|
|
|
return INT2NUM(idx);
|
|
|
|
}
|
|
|
|
|
2011-07-07 02:44:46 -04:00
|
|
|
void
|
2017-12-03 03:02:56 -05:00
|
|
|
Init_string_enc_associate(VALUE klass)
|
2011-07-07 02:44:46 -04:00
|
|
|
{
|
|
|
|
rb_define_method(klass, "associate_encoding!", bug_str_enc_associate, 1);
|
2015-07-15 03:55:08 -04:00
|
|
|
rb_define_singleton_method(klass, "encoding_index", bug_str_encoding_index, 1);
|
2011-07-07 02:44:46 -04:00
|
|
|
}
|