aboutsummaryrefslogtreecommitdiffstats
path: root/README.EXT.ja
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.ja
parent3d69324be300fce437536f7b7ac5f3d5c8c54d7d (diff)
downloadruby-37dffb599de6ad056c686f41881e9967dee4418e.tar.gz
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.ja')
-rw-r--r--README.EXT.ja1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.EXT.ja b/README.EXT.ja
index d18b81b58e..5a0073e977 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -234,6 +234,7 @@ rb_str_cat(VALUE str, const char *ptr, long len)
Rubyの文字列strにlenバイトの文字列ptrを追加する.
rb_str_cat2(VALUE str, const char* ptr)
+rb_str_cat_cstr(VALUE str, const char* ptr)
Rubyの文字列strにCの文字列ptrを追加する.この関数の機能は
rb_str_cat(str, ptr, strlen(ptr))と同等である.