зеркало из https://github.com/github/ruby.git
71 строка
1.9 KiB
C
71 строка
1.9 KiB
C
#ifndef RUBY_ENCINDEX_H
|
|
#define RUBY_ENCINDEX_H 1
|
|
/**********************************************************************
|
|
|
|
encindex.h -
|
|
|
|
$Author$
|
|
created at: Tue Sep 15 13:21:14 JST 2015
|
|
|
|
Copyright (C) 2015 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby/encoding.h" /* rb_ascii8bit_encindex etc. */
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#if 0
|
|
} /* satisfy cc-mode */
|
|
#endif
|
|
#endif
|
|
|
|
enum ruby_preserved_encindex {
|
|
RUBY_ENCINDEX_ASCII_8BIT,
|
|
RUBY_ENCINDEX_UTF_8,
|
|
RUBY_ENCINDEX_US_ASCII,
|
|
|
|
/* preserved indexes */
|
|
RUBY_ENCINDEX_UTF_16BE,
|
|
RUBY_ENCINDEX_UTF_16LE,
|
|
RUBY_ENCINDEX_UTF_32BE,
|
|
RUBY_ENCINDEX_UTF_32LE,
|
|
RUBY_ENCINDEX_UTF_16,
|
|
RUBY_ENCINDEX_UTF_32,
|
|
RUBY_ENCINDEX_UTF8_MAC,
|
|
|
|
/* for old options of regexp */
|
|
RUBY_ENCINDEX_EUC_JP,
|
|
RUBY_ENCINDEX_Windows_31J,
|
|
|
|
RUBY_ENCINDEX_BUILTIN_MAX
|
|
};
|
|
|
|
#define ENCINDEX_ASCII_8BIT RUBY_ENCINDEX_ASCII_8BIT
|
|
#define ENCINDEX_UTF_8 RUBY_ENCINDEX_UTF_8
|
|
#define ENCINDEX_US_ASCII RUBY_ENCINDEX_US_ASCII
|
|
#define ENCINDEX_UTF_16BE RUBY_ENCINDEX_UTF_16BE
|
|
#define ENCINDEX_UTF_16LE RUBY_ENCINDEX_UTF_16LE
|
|
#define ENCINDEX_UTF_32BE RUBY_ENCINDEX_UTF_32BE
|
|
#define ENCINDEX_UTF_32LE RUBY_ENCINDEX_UTF_32LE
|
|
#define ENCINDEX_UTF_16 RUBY_ENCINDEX_UTF_16
|
|
#define ENCINDEX_UTF_32 RUBY_ENCINDEX_UTF_32
|
|
#define ENCINDEX_UTF8_MAC RUBY_ENCINDEX_UTF8_MAC
|
|
#define ENCINDEX_EUC_JP RUBY_ENCINDEX_EUC_JP
|
|
#define ENCINDEX_Windows_31J RUBY_ENCINDEX_Windows_31J
|
|
#define ENCINDEX_BUILTIN_MAX RUBY_ENCINDEX_BUILTIN_MAX
|
|
|
|
#define rb_ascii8bit_encindex() RUBY_ENCINDEX_ASCII_8BIT
|
|
#define rb_utf8_encindex() RUBY_ENCINDEX_UTF_8
|
|
#define rb_usascii_encindex() RUBY_ENCINDEX_US_ASCII
|
|
|
|
int rb_enc_find_index2(const char *name, long len);
|
|
|
|
#if defined(__cplusplus)
|
|
#if 0
|
|
{ /* satisfy cc-mode */
|
|
#endif
|
|
} /* extern "C" { */
|
|
#endif
|
|
|
|
#endif /* RUBY_ENCINDEX_H */
|