2020-04-10 01:11:40 -04:00
|
|
|
#ifndef RUBY_ENCODING_H /*-*-C++-*-vi:se ft=cpp:*/
|
2007-08-25 00:14:26 -04:00
|
|
|
#define RUBY_ENCODING_H 1
|
2020-04-10 01:11:40 -04:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @author $Author: matz $
|
|
|
|
* @date Thu May 24 11:49:41 JST 2007
|
|
|
|
* @copyright Copyright (C) 2007 Yukihiro Matsumoto
|
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
2021-08-06 10:32:41 -04:00
|
|
|
* @brief Encoding relates APIs.
|
|
|
|
*
|
|
|
|
* These APIs are mainly for implementing encodings themselves. Encodings are
|
|
|
|
* built on top of Ruby's core CAPIs. Though not prohibited, there can be
|
|
|
|
* relatively less rooms for things in this header file be useful when writing
|
|
|
|
* an extension library.
|
2020-04-10 01:11:40 -04:00
|
|
|
*/
|
2016-10-22 22:41:43 -04:00
|
|
|
#include "ruby/ruby.h"
|
2007-08-25 00:14:26 -04:00
|
|
|
|
2021-09-23 21:34:32 -04:00
|
|
|
#include "ruby/internal/encoding/coderange.h"
|
|
|
|
#include "ruby/internal/encoding/ctype.h"
|
|
|
|
#include "ruby/internal/encoding/encoding.h"
|
|
|
|
#include "ruby/internal/encoding/pathname.h"
|
|
|
|
#include "ruby/internal/encoding/re.h"
|
|
|
|
#include "ruby/internal/encoding/sprintf.h"
|
|
|
|
#include "ruby/internal/encoding/string.h"
|
|
|
|
#include "ruby/internal/encoding/symbol.h"
|
|
|
|
#include "ruby/internal/encoding/transcode.h"
|
2010-05-25 00:26:50 -04:00
|
|
|
|
2007-08-25 00:14:26 -04:00
|
|
|
#endif /* RUBY_ENCODING_H */
|