summaryrefslogtreecommitdiff
path: root/include/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/encoding.h5
-rw-r--r--include/ruby/io.h8
2 files changed, 13 insertions, 0 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h
index c859c50559..6c443d6f0d 100644
--- a/include/ruby/encoding.h
+++ b/include/ruby/encoding.h
@@ -268,6 +268,11 @@ void rb_econv_check_error(rb_econv_t *ec);
int rb_econv_putbackable(rb_econv_t *ec);
void rb_econv_putback(rb_econv_t *ec, unsigned char *p, int n);
+/* returns corresponding stateless encoding, or NULL if not stateful. */
+const char *rb_econv_stateless_encoding(const char *stateful_enc);
+
+VALUE rb_econv_string(rb_econv_t *ec, VALUE src, long off, long len, VALUE dst, int flags);
+
/* flags for rb_econv_open */
#define ECONV_UNIVERSAL_NEWLINE_DECODER 0x100
#define ECONV_CRLF_NEWLINE_ENCODER 0x200
diff --git a/include/ruby/io.h b/include/ruby/io.h
index 2a2b991a6d..32830aaaea 100644
--- a/include/ruby/io.h
+++ b/include/ruby/io.h
@@ -63,6 +63,11 @@ typedef struct rb_io_t {
int crbuf_off;
int crbuf_len;
int crbuf_capa;
+
+ rb_econv_t *writeconv;
+ VALUE writeconv_stateless;
+ int writeconv_initialized;
+
} rb_io_t;
#define HAVE_RB_IO_T 1
@@ -110,6 +115,9 @@ typedef struct rb_io_t {
fp->crbuf_off = 0;\
fp->crbuf_len = 0;\
fp->crbuf_capa = 0;\
+ fp->writeconv = NULL;\
+ fp->writeconv_stateless = Qnil;\
+ fp->writeconv_initialized = 0;\
fp->tied_io_for_writing = 0;\
fp->enc = 0;\
fp->enc2 = 0;\