summaryrefslogtreecommitdiff
path: root/ext/-test-/string/chilled.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/-test-/string/chilled.c')
-rw-r--r--ext/-test-/string/chilled.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/-test-/string/chilled.c b/ext/-test-/string/chilled.c
new file mode 100644
index 0000000000..c98fc72c47
--- /dev/null
+++ b/ext/-test-/string/chilled.c
@@ -0,0 +1,13 @@
+#include "ruby.h"
+
+static VALUE
+bug_s_rb_str_chilled_p(VALUE self, VALUE str)
+{
+ return rb_str_chilled_p(str) ? Qtrue : Qfalse;
+}
+
+void
+Init_string_chilled(VALUE klass)
+{
+ rb_define_singleton_method(klass, "rb_str_chilled_p", bug_s_rb_str_chilled_p, 1);
+}