summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.EXT b/README.EXT
index b41e6a426c..c4dba7f1f6 100644
--- a/README.EXT
+++ b/README.EXT
@@ -190,10 +190,15 @@ listed below:
Appends len bytes of data from ptr to the Ruby string.
rb_sprintf(const char *format, ...)
- rb_vsprintf(const char *format, ...)
+ rb_vsprintf(const char *format, va_list ap)
Creates a new Ruby string with printf(3) format.
+ rb_str_cat2(VALUE str, const char* ptr)
+
+ Appends C string ptr to Ruby string str. This function is
+ equivalent to rb_str_cat(str, ptr, strlen(ptr)).
+
Array functions
rb_ary_new()