зеркало из https://github.com/github/ruby.git
16 строки
310 B
C
16 строки
310 B
C
#include <ruby.h>
|
|
#include <ruby/encoding.h>
|
|
|
|
static VALUE
|
|
enc_raise(VALUE exc, VALUE encoding, VALUE mesg)
|
|
{
|
|
rb_enc_raise(rb_to_encoding(encoding), exc, "%s", StringValueCStr(mesg));
|
|
UNREACHABLE;
|
|
}
|
|
|
|
void
|
|
Init_enc_raise(VALUE klass)
|
|
{
|
|
rb_define_module_function(klass, "enc_raise", enc_raise, 2);
|
|
}
|