mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add functions and macros for second encoding definitions.
* encoding.c (rb_enc_set_base): Add for setting base encoding with their names. this is internal function. * template/encdb.h.tmpl: specify ENC_SET_BASE for second encodings in each encoding files. * enc/encdb.c (rb_enc_set_base): add a declaration. (ENC_SET_BASE): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e00b83ceb9
commit
b3d7273dc1
4 changed files with 30 additions and 1 deletions
|
|
@ -13,10 +13,12 @@ int rb_encdb_replicate(const char *alias, const char *orig);
|
|||
int rb_encdb_alias(const char *alias, const char *orig);
|
||||
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);
|
||||
#define ENC_REPLICATE(name, orig) rb_encdb_replicate(name, orig)
|
||||
#define ENC_ALIAS(name, orig) rb_encdb_alias(name, orig)
|
||||
#define ENC_DUMMY(name) rb_encdb_dummy(name)
|
||||
#define ENC_DEFINE(name) rb_encdb_declare(name)
|
||||
#define ENC_SET_BASE(name) rb_enc_set_base(name)
|
||||
|
||||
void
|
||||
Init_encdb(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue