summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormattn <[email protected]>2013-01-11 16:00:36 +0900
committermattn <[email protected]>2013-01-11 16:00:36 +0900
commit28b4eac531fbd018f2ed1ae69d9ce20a4cf71514 (patch)
treebf6aecd2f94adb1115b50505af20b515f0bea2fd /include
parente35ce6c230479b24eb0d60ca8717f98e90ff78d2 (diff)
parent0ff251438cf0fac727da8e8d99071cbdf46e7cfe (diff)
downloadmruby-28b4eac531fbd018f2ed1ae69d9ce20a4cf71514.tar.gz
mruby-28b4eac531fbd018f2ed1ae69d9ce20a4cf71514.zip
Merge branch 'master' of https://github.com/mruby/mruby
Diffstat (limited to 'include')
-rw-r--r--include/mruby/hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/hash.h b/include/mruby/hash.h
index bb12962ca..acb9de93b 100644
--- a/include/mruby/hash.h
+++ b/include/mruby/hash.h
@@ -29,6 +29,7 @@ mrb_value mrb_hash_fetch(mrb_state *mrb, mrb_value hash, mrb_value key, mrb_valu
mrb_value mrb_hash_delete_key(mrb_state *mrb, mrb_value hash, mrb_value key);
mrb_value mrb_hash(mrb_state *mrb, mrb_value obj);
mrb_value mrb_hash_keys(mrb_state *mrb, mrb_value hash);
+mrb_value mrb_check_hash_type(mrb_state *mrb, mrb_value hash);
/* RHASH_TBL allocates st_table if not available. */
#define RHASH(obj) ((struct RHash*)((obj).value.p))