mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
298 B
C
15 lines
298 B
C
#include "ruby/ruby.h"
|
|
#include "ruby/encoding.h"
|
|
|
|
static VALUE
|
|
econv_append(VALUE self, VALUE src, VALUE dst)
|
|
{
|
|
rb_econv_t *ec = DATA_PTR(self);
|
|
return rb_econv_str_append(ec, src, dst, 0);
|
|
}
|
|
|
|
void
|
|
Init_econv_append(VALUE klass)
|
|
{
|
|
rb_define_method(klass, "append", econv_append, 2);
|
|
}
|