summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorRalph Desir <[email protected]>2015-08-30 23:55:55 -0400
committerRalph Desir <[email protected]>2015-08-30 23:55:55 -0400
commita2f6152be8a2d1775830f32ca955864237fd1081 (patch)
tree5569fec5890a474079ee0357b6daa8c638132213 /doc
parent0f2b3643ba47a0778eb8571b029e93f16e142b23 (diff)
downloadmruby-a2f6152be8a2d1775830f32ca955864237fd1081.tar.gz
mruby-a2f6152be8a2d1775830f32ca955864237fd1081.zip
Update string.h.md
Diffstat (limited to 'doc')
-rw-r--r--doc/api/mruby/string.h.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/api/mruby/string.h.md b/doc/api/mruby/string.h.md
index e69de29bb..b031c564c 100644
--- a/doc/api/mruby/string.h.md
+++ b/doc/api/mruby/string.h.md
@@ -0,0 +1,10 @@
+### mrb_str_plus
+```C
+ mrb_value mrb_str_plus(mrb_state*, mrb_value, mrb_value);
+```
+Adds to strings together.
+### mrb_ptr_to_str
+```C
+ mrb_value mrb_ptr_to_str(mrb_state *, void*);
+```
+Converts pointer into a Ruby string.