mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* README.EXT, README.EXT.ja (1.5 Manipulating Ruby data): mentioned
rb_sprintf and rb_vsprintf. [ruby-dev:35611] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c98b3a7e19
commit
2bd1599caf
3 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jul 21 13:55:37 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* README.EXT, README.EXT.ja (1.5 Manipulating Ruby data): mentioned
|
||||
rb_sprintf and rb_vsprintf. [ruby-dev:35611]
|
||||
|
||||
Mon Jul 21 10:25:52 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* io.c (prepare_getline_args): check if rs is a string when non-nil
|
||||
|
|
|
@ -189,6 +189,11 @@ listed below:
|
|||
|
||||
Appends len bytes of data from ptr to the Ruby string.
|
||||
|
||||
rb_sprintf(const char *format, ...)
|
||||
rb_vsprintf(const char *format, ...)
|
||||
|
||||
Creates a new Ruby string with printf(3) format.
|
||||
|
||||
Array functions
|
||||
|
||||
rb_ary_new()
|
||||
|
|
|
@ -216,6 +216,11 @@ Ruby
|
|||
|
||||
Rubyの文字列strにlenバイトの文字列ptrを追加する.
|
||||
|
||||
rb_sprintf(const char *format, ...)
|
||||
rb_vsprintf(const char *format, ...)
|
||||
|
||||
printf(3)のフォーマットにしたがって,Rubyの文字列を生成する.
|
||||
|
||||
配列に対する関数
|
||||
|
||||
rb_ary_new()
|
||||
|
|
Loading…
Add table
Reference in a new issue