mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6204e0804b
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
568 B
C
24 lines
568 B
C
#include "ruby.h"
|
|
#include "rubyspec.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
VALUE marshal_spec_rb_marshal_dump(VALUE self, VALUE obj, VALUE port) {
|
|
return rb_marshal_dump(obj, port);
|
|
}
|
|
|
|
VALUE marshal_spec_rb_marshal_load(VALUE self, VALUE data) {
|
|
return rb_marshal_load(data);
|
|
}
|
|
|
|
void Init_marshal_spec(void) {
|
|
VALUE cls = rb_define_class("CApiMarshalSpecs", rb_cObject);
|
|
rb_define_method(cls, "rb_marshal_dump", marshal_spec_rb_marshal_dump, 2);
|
|
rb_define_method(cls, "rb_marshal_load", marshal_spec_rb_marshal_load, 1);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|