mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/encoding.h (rb_enc_str_new): prototype added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
10f56f8fd0
commit
2d888a8f33
2 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
Sat Aug 25 16:13:59 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Aug 25 17:05:05 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (swallow): removed condition using an unset variable.
|
* io.c (swallow): removed condition using an unset variable.
|
||||||
|
|
||||||
|
@ -6,6 +6,8 @@ Sat Aug 25 16:13:59 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* string.c (rb_str_splice): return from void funtion.
|
* string.c (rb_str_splice): return from void funtion.
|
||||||
|
|
||||||
|
* include/ruby/encoding.h (rb_enc_str_new): prototype added.
|
||||||
|
|
||||||
Sat Aug 25 11:45:37 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Sat Aug 25 11:45:37 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* encoding.c: provide basic features for M17N.
|
* encoding.c: provide basic features for M17N.
|
||||||
|
|
|
@ -32,6 +32,7 @@ rb_encoding* rb_enc_check(VALUE,VALUE);
|
||||||
void rb_enc_associate(VALUE, rb_encoding*);
|
void rb_enc_associate(VALUE, rb_encoding*);
|
||||||
void rb_enc_copy(VALUE, VALUE);
|
void rb_enc_copy(VALUE, VALUE);
|
||||||
|
|
||||||
|
VALUE rb_enc_str_new(const char*, long len, rb_encoding*);
|
||||||
long rb_enc_strlen(const char*, const char*, rb_encoding*);
|
long rb_enc_strlen(const char*, const char*, rb_encoding*);
|
||||||
char* rb_enc_nth(const char*, const char*, int, rb_encoding*);
|
char* rb_enc_nth(const char*, const char*, int, rb_encoding*);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue