2012-06-02 09:44:02 -04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/encoding.h"
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enc_str_buf_cat(VALUE str, VALUE str2)
|
|
|
|
{
|
|
|
|
return rb_enc_str_buf_cat(str, RSTRING_PTR(str2), RSTRING_LEN(str2), rb_enc_get(str2));
|
|
|
|
}
|
|
|
|
|
2021-06-26 03:05:15 -04:00
|
|
|
static VALUE
|
|
|
|
str_conv_enc_opts(VALUE str, VALUE from, VALUE to, VALUE ecflags, VALUE ecopts)
|
|
|
|
{
|
|
|
|
rb_encoding *from_enc = NIL_P(from) ? NULL : rb_to_encoding(from);
|
|
|
|
rb_encoding *to_enc = NIL_P(to) ? NULL : rb_to_encoding(to);
|
|
|
|
int flags = NUM2INT(ecflags);
|
|
|
|
if (!NIL_P(ecopts)) {
|
|
|
|
Check_Type(ecopts, T_HASH);
|
|
|
|
OBJ_FREEZE(ecopts);
|
|
|
|
}
|
|
|
|
return rb_str_conv_enc_opts(str, from_enc, to_enc, flags, ecopts);
|
|
|
|
}
|
|
|
|
|
2012-06-02 09:44:02 -04:00
|
|
|
void
|
2017-12-03 03:02:56 -05:00
|
|
|
Init_string_enc_str_buf_cat(VALUE klass)
|
2012-06-02 09:44:02 -04:00
|
|
|
{
|
|
|
|
rb_define_method(klass, "enc_str_buf_cat", enc_str_buf_cat, 1);
|
2021-06-26 03:05:15 -04:00
|
|
|
rb_define_method(klass, "str_conv_enc_opts", str_conv_enc_opts, 4);
|
2012-06-02 09:44:02 -04:00
|
|
|
}
|