summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2012-11-14 14:42:21 +0900
committerYukihiro Matz Matsumoto <[email protected]>2012-11-14 14:42:21 +0900
commit3eeef306184f202c106d56a13022afc54dad98cb (patch)
treeb67640a7fb82218e813e711ebdc6cea4a5cb7071 /include
parent1cd9d7e40abb8112fe9f05193f9af6ec357a71eb (diff)
downloadmruby-3eeef306184f202c106d56a13022afc54dad98cb.tar.gz
mruby-3eeef306184f202c106d56a13022afc54dad98cb.zip
make mrb_hash_keys() non static function
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 7aab80f21..bb12962ca 100644
--- a/include/mruby/hash.h
+++ b/include/mruby/hash.h
@@ -28,6 +28,7 @@ mrb_value mrb_hash_get(mrb_state *mrb, mrb_value hash, mrb_value key);
mrb_value mrb_hash_fetch(mrb_state *mrb, mrb_value hash, mrb_value key, mrb_value def);
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);
/* RHASH_TBL allocates st_table if not available. */
#define RHASH(obj) ((struct RHash*)((obj).value.p))