2019-12-04 03:16:30 -05:00
|
|
|
#include "internal/bignum.h"
|
2013-09-02 23:50:15 -04:00
|
|
|
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
str2big_poweroftwo(VALUE klass, VALUE str, VALUE vbase, VALUE badcheck)
|
2013-09-02 23:50:15 -04:00
|
|
|
{
|
|
|
|
return rb_str2big_poweroftwo(str, NUM2INT(vbase), RTEST(badcheck));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
str2big_normal(VALUE klass, VALUE str, VALUE vbase, VALUE badcheck)
|
2013-09-02 23:50:15 -04:00
|
|
|
{
|
|
|
|
return rb_str2big_normal(str, NUM2INT(vbase), RTEST(badcheck));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
str2big_karatsuba(VALUE klass, VALUE str, VALUE vbase, VALUE badcheck)
|
2013-09-02 23:50:15 -04:00
|
|
|
{
|
|
|
|
return rb_str2big_karatsuba(str, NUM2INT(vbase), RTEST(badcheck));
|
|
|
|
}
|
|
|
|
|
2013-09-03 07:20:02 -04:00
|
|
|
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
str2big_gmp(VALUE klass, VALUE str, VALUE vbase, VALUE badcheck)
|
2013-09-03 07:20:02 -04:00
|
|
|
{
|
|
|
|
return rb_str2big_gmp(str, NUM2INT(vbase), RTEST(badcheck));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define str2big_gmp rb_f_notimplement
|
|
|
|
#endif
|
|
|
|
|
2013-09-02 23:50:15 -04:00
|
|
|
void
|
|
|
|
Init_str2big(VALUE klass)
|
|
|
|
{
|
2021-01-08 05:07:16 -05:00
|
|
|
rb_define_singleton_method(klass, "str2big_poweroftwo", str2big_poweroftwo, 3);
|
|
|
|
rb_define_singleton_method(klass, "str2big_normal", str2big_normal, 3);
|
|
|
|
rb_define_singleton_method(klass, "str2big_karatsuba", str2big_karatsuba, 3);
|
|
|
|
rb_define_singleton_method(klass, "str2big_gmp", str2big_gmp, 3);
|
2013-09-02 23:50:15 -04:00
|
|
|
}
|