mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2583689340
(str2big_gmp): New function. (rb_cstr_to_inum): Use str2big_gmp for big bignums. (rb_str2big_gmp): New function. * internal.h (rb_str2big_gmp): Declared. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
39 lines
1 KiB
C
39 lines
1 KiB
C
#include "ruby.h"
|
|
#include "internal.h"
|
|
|
|
static VALUE
|
|
str2big_poweroftwo(VALUE str, VALUE vbase, VALUE badcheck)
|
|
{
|
|
return rb_str2big_poweroftwo(str, NUM2INT(vbase), RTEST(badcheck));
|
|
}
|
|
|
|
static VALUE
|
|
str2big_normal(VALUE str, VALUE vbase, VALUE badcheck)
|
|
{
|
|
return rb_str2big_normal(str, NUM2INT(vbase), RTEST(badcheck));
|
|
}
|
|
|
|
static VALUE
|
|
str2big_karatsuba(VALUE str, VALUE vbase, VALUE badcheck)
|
|
{
|
|
return rb_str2big_karatsuba(str, NUM2INT(vbase), RTEST(badcheck));
|
|
}
|
|
|
|
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
|
static VALUE
|
|
str2big_gmp(VALUE str, VALUE vbase, VALUE badcheck)
|
|
{
|
|
return rb_str2big_gmp(str, NUM2INT(vbase), RTEST(badcheck));
|
|
}
|
|
#else
|
|
#define str2big_gmp rb_f_notimplement
|
|
#endif
|
|
|
|
void
|
|
Init_str2big(VALUE klass)
|
|
{
|
|
rb_define_method(rb_cString, "str2big_poweroftwo", str2big_poweroftwo, 2);
|
|
rb_define_method(rb_cString, "str2big_normal", str2big_normal, 2);
|
|
rb_define_method(rb_cString, "str2big_karatsuba", str2big_karatsuba, 2);
|
|
rb_define_method(rb_cString, "str2big_gmp", str2big_gmp, 2);
|
|
}
|