diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-27 23:03:48 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-27 23:03:48 +0900 |
| commit | 8ce842a5d978132c5733cacb7c15bb3d0f5ce66d (patch) | |
| tree | 0875f3e9cabc75bd400cff36e0879e38f0f32ae1 /include | |
| parent | 8f8c22ac6747319e82654177c971eacb67b2688c (diff) | |
| download | mruby-8ce842a5d978132c5733cacb7c15bb3d0f5ce66d.tar.gz mruby-8ce842a5d978132c5733cacb7c15bb3d0f5ce66d.zip | |
implement mrb_format and mrb_vformat
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/array.h b/include/mruby/array.h index 0419ddb27..d52ca1596 100644 --- a/include/mruby/array.h +++ b/include/mruby/array.h @@ -54,6 +54,7 @@ mrb_value mrb_assoc_new(mrb_state *mrb, mrb_value car, mrb_value cdr); mrb_value mrb_ary_entry(mrb_value ary, mrb_int offset); mrb_value mrb_ary_shift(mrb_state *mrb, mrb_value self); mrb_value mrb_ary_clear(mrb_state *mrb, mrb_value self); +mrb_value mrb_ary_join(mrb_state *mrb, mrb_value ary, mrb_value sep); #if defined(__cplusplus) } /* extern "C" { */ |
