summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-12 10:08:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-12 10:08:48 +0000
commitd9ffec943c0608523135d73c6b7c348a9b02a8a5 (patch)
tree6db22c190b53616729c703c529d2fd2d3995c9e9 /include/ruby
parent2938f7ee3b725d861d702de74a9743d260fdb68e (diff)
downloadruby-d9ffec943c0608523135d73c6b7c348a9b02a8a5.tar.gz
ruby-d9ffec943c0608523135d73c6b7c348a9b02a8a5.tar.xz
ruby-d9ffec943c0608523135d73c6b7c348a9b02a8a5.zip
* string.c (rb_str_drop_bytes): new function to drop first bytes.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index fb5e1380f..df9354918 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -580,7 +580,7 @@ int rb_str_hash_cmp(VALUE,VALUE);
int rb_str_comparable(VALUE, VALUE);
int rb_str_cmp(VALUE, VALUE);
VALUE rb_str_equal(VALUE str1, VALUE str2);
-VALUE rb_str_drop(VALUE, long);
+VALUE rb_str_drop_bytes(VALUE, long);
void rb_str_update(VALUE, long, long, VALUE);
VALUE rb_str_inspect(VALUE);
VALUE rb_str_dump(VALUE);