diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-10 14:12:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-10 14:12:04 +0000 |
commit | d52844380aa55d9449af2b9c6ba271be88d54829 (patch) | |
tree | 5982798c52f41062909bd10764cbdbd77fd90b7a /include/ruby/intern.h | |
parent | c0796c36b59e28a12faabe8eaca0a3950937af6f (diff) |
string.c: rb_str_subpos
* string.c (rb_str_subpos): make public function.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index df22f34796..df9d4af8d0 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -701,6 +701,7 @@ VALUE rb_str_times(VALUE, VALUE); long rb_str_sublen(VALUE, long); VALUE rb_str_substr(VALUE, long, long); VALUE rb_str_subseq(VALUE, long, long); +char *rb_str_subpos(VALUE, long, long*); void rb_str_modify(VALUE); void rb_str_modify_expand(VALUE, long); VALUE rb_str_freeze(VALUE); |