2020-04-10 01:11:40 -04:00
|
|
|
#ifndef INTERNAL_ENCODING_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define INTERNAL_ENCODING_H
|
|
|
|
/**
|
2019-11-29 01:18:34 -05:00
|
|
|
* @file
|
2020-04-08 00:28:13 -04:00
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
2019-11-29 01:18:34 -05:00
|
|
|
* @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.
|
2020-04-08 00:28:13 -04:00
|
|
|
* @brief Internal header for Encoding.
|
2019-11-29 01:18:34 -05:00
|
|
|
*/
|
2019-12-03 00:47:38 -05:00
|
|
|
#include "ruby/ruby.h" /* for ID */
|
|
|
|
#include "ruby/encoding.h" /* for rb_encoding */
|
2019-11-29 01:18:34 -05:00
|
|
|
|
2021-03-19 06:29:06 -04:00
|
|
|
#define rb_enc_autoload_p(enc) (!rb_enc_mbmaxlen(enc))
|
|
|
|
|
2019-11-29 01:18:34 -05:00
|
|
|
/* encoding.c */
|
|
|
|
ID rb_id_encoding(void);
|
|
|
|
rb_encoding *rb_enc_get_from_index(int index);
|
|
|
|
rb_encoding *rb_enc_check_str(VALUE str1, VALUE str2);
|
|
|
|
int rb_encdb_replicate(const char *alias, const char *orig);
|
|
|
|
int rb_encdb_alias(const char *alias, const char *orig);
|
2021-03-19 06:29:06 -04:00
|
|
|
int rb_enc_autoload(rb_encoding *enc);
|
2019-11-29 01:18:34 -05:00
|
|
|
int rb_encdb_dummy(const char *name);
|
|
|
|
void rb_encdb_declare(const char *name);
|
|
|
|
void rb_enc_set_base(const char *name, const char *orig);
|
|
|
|
int rb_enc_set_dummy(int index);
|
|
|
|
void rb_encdb_set_unicode(int index);
|
|
|
|
PUREFUNC(int rb_data_is_encoding(VALUE obj));
|
|
|
|
|
|
|
|
#endif /* INTERNAL_ENCODING_H */
|