summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-17 05:22:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-17 05:22:57 +0000
commit37dffb599de6ad056c686f41881e9967dee4418e (patch)
tree1861c6ed6f8c594d0aa1916c1798efa06a67e249 /README.EXT
parent3d69324be300fce437536f7b7ac5f3d5c8c54d7d (diff)
string.c: rb_str_cat_cstr
* string.c (rb_str_cat): make non-buf version main. * string.c (rb_str_cat_cstr): rename from rb_str_cat2. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.EXT b/README.EXT
index b36273723d..6ba0e6fec6 100644
--- a/README.EXT
+++ b/README.EXT
@@ -208,6 +208,7 @@ rb_str_cat(VALUE str, const char *ptr, long len) ::
Appends len bytes of data from ptr to the Ruby string.
rb_str_cat2(VALUE str, const char* ptr) ::
+rb_str_cat_cstr(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)).