2017-05-07 12:04:49 +00:00
|
|
|
#include "ruby.h"
|
|
|
|
#include "rubyspec.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-09-14 15:56:33 +00:00
|
|
|
static VALUE fixnum_spec_FIX2INT(VALUE self, VALUE value) {
|
|
|
|
int i = FIX2INT(value);
|
|
|
|
return INT2NUM(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE fixnum_spec_FIX2UINT(VALUE self, VALUE value) {
|
|
|
|
unsigned int i = FIX2UINT(value);
|
|
|
|
return UINT2NUM(i);
|
|
|
|
}
|
|
|
|
|
2017-05-07 12:04:49 +00:00
|
|
|
void Init_fixnum_spec(void) {
|
2019-01-20 20:38:57 +00:00
|
|
|
VALUE cls = rb_define_class("CApiFixnumSpecs", rb_cObject);
|
2017-09-14 15:56:33 +00:00
|
|
|
rb_define_method(cls, "FIX2INT", fixnum_spec_FIX2INT, 1);
|
|
|
|
rb_define_method(cls, "FIX2UINT", fixnum_spec_FIX2UINT, 1);
|
2017-05-07 12:04:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|