summaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-07 07:54:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-07 07:54:28 +0000
commit776867e14b8110643f6691d882b29acd966919f4 (patch)
tree995b4ebf38b0616393b4c0391a711544636e43de /error.c
parent4fdd11e028c2c0d3a14bb17e45dd57b6fd84ed7c (diff)
downloadruby-776867e14b8110643f6691d882b29acd966919f4.tar.gz
ruby-776867e14b8110643f6691d882b29acd966919f4.tar.xz
ruby-776867e14b8110643f6691d882b29acd966919f4.zip
* error.c (rb_typed_struct_is_kind_of): new function to see if the
given typed struct. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/error.c b/error.c
index 04ea58de1..537b1742f 100644
--- a/error.c
+++ b/error.c
@@ -316,6 +316,16 @@ rb_check_type(VALUE x, int t)
}
}
+int
+rb_typed_struct_is_kind_of(VALUE obj, const rb_data_type_t *data_type)
+{
+ if (SPECIAL_CONST_P(obj) || BUILTIN_TYPE(obj) != T_DATA ||
+ !RTYPEDDATA_P(obj) || RTYPEDDATA_TYPE(obj) != data_type) {
+ return 0;
+ }
+ return 1;
+}
+
void *
rb_check_typed_struct(VALUE obj, const rb_data_type_t *data_type)
{