1 #ifndef INTERNAL_TRANSCODE_H /*-*-C-*-vi:se ft=c:*/
2 #define INTERNAL_TRANSCODE_H
4 * @author Ruby developers <ruby-core@ruby-lang.org>
5 * @copyright This file is a part of the programming language Ruby.
6 * Permission is hereby granted, to either redistribute and/or
7 * modify this file, provided that the conditions mentioned in the
8 * file COPYING are met. Consult the file for details.
9 * @brief Internal header for Encoding::Converter.
11 #include "ruby/internal/config.h"
12 #include <stddef.h> /* for size_t */
13 #include "ruby/ruby.h" /* for VALUE */
14 #include "ruby/encoding.h" /* for rb_econv_t */
17 extern VALUE rb_cEncodingConverter
;
18 size_t rb_econv_memsize(rb_econv_t
*);
21 void rb_free_transcoder_table(void);
23 #endif /* INTERNAL_TRANSCODE_H */