summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-04-26 10:57:08 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2013-04-26 10:57:08 +0900
commite63b086f1ebcdf0872c02ad13c6c68bda9bba023 (patch)
tree931d5762a9a5a74e98d30e39acf20bfc6bf03661 /include/mruby.h
parentc99b72b20d3c3814248c9654c934a06e5dff96e5 (diff)
downloadmruby-e63b086f1ebcdf0872c02ad13c6c68bda9bba023.tar.gz
mruby-e63b086f1ebcdf0872c02ad13c6c68bda9bba023.zip
rename mrb_interned API functions
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 19743eed4..5db987818 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -208,9 +208,9 @@ mrb_value mrb_funcall_with_block(mrb_state*, mrb_value, mrb_sym, int, mrb_value*
mrb_sym mrb_intern_cstr(mrb_state*,const char*);
mrb_sym mrb_intern2(mrb_state*,const char*,size_t);
mrb_sym mrb_intern_str(mrb_state*,mrb_value);
-mrb_value mrb_cstr_interned(mrb_state*,const char*);
-mrb_value mrb_interned(mrb_state*,const char*,size_t);
-mrb_value mrb_str_interned(mrb_state*,mrb_value);
+mrb_value mrb_check_intern_cstr(mrb_state*,const char*);
+mrb_value mrb_check_intern(mrb_state*,const char*,size_t);
+mrb_value mrb_check_intern_str(mrb_state*,mrb_value);
const char *mrb_sym2name(mrb_state*,mrb_sym);
const char *mrb_sym2name_len(mrb_state*,mrb_sym,size_t*);
mrb_value mrb_sym2str(mrb_state*,mrb_sym);