diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-26 02:07:19 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-26 02:07:19 +0000 |
commit | e76b1a11ca8eace6ee592722255195e2fe02ecd5 (patch) | |
tree | a143dfc9f48b6c3934008b0c86509ae053922182 /include/ruby/encoding.h | |
parent | 4300e2a9931204ed8c282f313bd963899febe87e (diff) |
* transcode.c, include/ruby/encoding.c (rb_transcode_convertible):
new function. checking the existance of converter.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/encoding.h')
-rw-r--r-- | include/ruby/encoding.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 2c7f105ec3..b6ac57418c 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -209,6 +209,7 @@ typedef enum { typedef struct rb_econv_t rb_econv_t; VALUE rb_str_transcode(VALUE str, VALUE to, int ecflags, VALUE ecopts); +int rb_transcode_convertible(const char* from_encoding, const char* to_encoding); int rb_econv_prepare_opts(VALUE opthash, VALUE *ecopts); |