Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ruby/encindex.h
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
70 lines (56 sloc)
1.89 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 */ |