diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-05 08:34:09 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-05 08:34:09 +0900 |
| commit | b7cc7fffe7030834c160ce2cb78c398ba23ac145 (patch) | |
| tree | 4e66123607da386456a2d7c1d297f134b3d28e97 /include | |
| parent | 531124f0573e939d07d23ea0927483e0fb3954eb (diff) | |
| download | mruby-b7cc7fffe7030834c160ce2cb78c398ba23ac145.tar.gz mruby-b7cc7fffe7030834c160ce2cb78c398ba23ac145.zip | |
symbol can contain non printable characters
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h index 3dc160535..579375d9f 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -332,7 +332,10 @@ 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); +const char *mrb_sym2name_len(mrb_state*,mrb_sym,int*); mrb_value mrb_str_format(mrb_state *, int, const mrb_value *, mrb_value); void *mrb_malloc(mrb_state*, size_t); |
