summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/-test-/struct/member.c
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/-test-/struct/member.c
Fresh start
Diffstat (limited to 'jni/ruby/ext/-test-/struct/member.c')
-rw-r--r--jni/ruby/ext/-test-/struct/member.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/jni/ruby/ext/-test-/struct/member.c b/jni/ruby/ext/-test-/struct/member.c
new file mode 100644
index 0000000..1d40403
--- /dev/null
+++ b/jni/ruby/ext/-test-/struct/member.c
@@ -0,0 +1,18 @@
+#include "ruby.h"
+
+static VALUE
+bug_struct_get(VALUE obj, VALUE name)
+{
+ ID id = rb_check_id(&name);
+
+ if (!id) {
+ rb_name_error_str(name, "`%"PRIsVALUE"' is not a struct member", name);
+ }
+ return rb_struct_getmember(obj, id);
+}
+
+void
+Init_member(VALUE klass)
+{
+ rb_define_method(klass, "get", bug_struct_get, 1);
+}