diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-04 20:34:43 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-04 20:34:43 +0900 |
| commit | b2e6a0fc04f6237f5118bf6c2f404a0d8fa4d2c4 (patch) | |
| tree | 15760ea6507eae941d4ae5d506c9d5e829be2a1d /include | |
| parent | ab3c178a5f9742ff1fd6522c87b5cfd56e685e89 (diff) | |
| download | mruby-b2e6a0fc04f6237f5118bf6c2f404a0d8fa4d2c4.tar.gz mruby-b2e6a0fc04f6237f5118bf6c2f404a0d8fa4d2c4.zip | |
symbol can contain non printable characters
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h index 3dc160535..0ce4926a8 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -332,6 +332,8 @@ mrb_value mrb_funcall(mrb_state*, mrb_value, const char*, int,...); mrb_value mrb_funcall_argv(mrb_state*, mrb_value, const char*, int, mrb_value*); mrb_value mrb_funcall_with_block(mrb_state*, mrb_value, const char*, int, mrb_value*, mrb_value); mrb_sym mrb_intern(mrb_state*,const char*); +mrb_sym mrb_intern2(mrb_state*,const char*, int); +mrb_sym mrb_intern_str(mrb_state*,mrb_value); const char *mrb_sym2name(mrb_state*,mrb_sym); mrb_value mrb_str_format(mrb_state *, int, const mrb_value *, mrb_value); |
