diff options
Diffstat (limited to 'ext/-test-/bignum/import.c')
-rw-r--r-- | ext/-test-/bignum/import.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/-test-/bignum/import.c b/ext/-test-/bignum/import.c new file mode 100644 index 0000000000..22cc86dcde --- /dev/null +++ b/ext/-test-/bignum/import.c @@ -0,0 +1,18 @@ +#include "ruby.h" +#include "internal.h" + +static VALUE +rb_int_import_m(VALUE klass, VALUE sign, VALUE buf, VALUE wordcount, VALUE wordorder, VALUE wordsize, VALUE endian, VALUE nails) +{ + StringValue(buf); + + return rb_int_import(NUM2INT(sign), RSTRING_PTR(buf), + NUM2SIZE(wordcount), NUM2INT(wordorder), NUM2SIZE(wordsize), + NUM2INT(endian), NUM2SIZE(nails)); +} + +void +Init_import(VALUE klass) +{ + rb_define_singleton_method(rb_cInteger, "test_import", rb_int_import_m, 7); +} |