Update string.h.md

This commit is contained in:
Ralph Desir
2015-08-30 23:55:55 -04:00
parent 0f2b3643ba
commit a2f6152be8
+10
View File
@@ -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.