summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-26 02:07:19 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-26 02:07:19 +0000
commite76b1a11ca8eace6ee592722255195e2fe02ecd5 (patch)
treea143dfc9f48b6c3934008b0c86509ae053922182 /include
parent4300e2a9931204ed8c282f313bd963899febe87e (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')
-rw-r--r--include/ruby/encoding.h1
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);