mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
157 B
C
10 lines
157 B
C
|
#include "ruby.h"
|
||
|
|
||
|
RUBY_EXTERN VALUE rmpd_util_str_to_d(VALUE str);
|
||
|
|
||
|
void
|
||
|
Init_util(void)
|
||
|
{
|
||
|
rb_define_method(rb_cString, "to_d", rmpd_util_str_to_d, 0);
|
||
|
}
|