1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/enc/jis/props.src
nobu 7c4306e6e9 gperf.sed: static declarations
* tool/gperf.sed: comment out arguments part only, to keep the
  following declarations static.  [Feature #13883]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-12-15 14:42:43 +00:00

52 lines
1.2 KiB
C

%{/* -*- c -*- */
#define GPERF_DOWNCASE 1
#define GPERF_CASE_STRNCMP 1
static inline int
gperf_case_strncmp(const char *s1, const char *s2, size_t n)
{
const UChar *str = (const UChar *)s1;
const UChar *s = (const UChar *)s2;
return onigenc_with_ascii_strnicmp(ONIG_ENCODING_ASCII, str, str + n, s, (int)n);
}
enum onigenc_jis_ctype {
onigenc_jis_min = ONIGENC_MAX_STD_CTYPE,
onigenc_jis_hiragana,
onigenc_jis_katakana,
onigenc_jis_han,
onigenc_jis_latin,
onigenc_jis_greek,
onigenc_jis_cyrillic,
onigenc_jis_max
};
enum {PropertyListNum = onigenc_jis_max - onigenc_jis_min - 1};
static const OnigCodePoint* const PropertyList[PropertyListNum] = {
CR_Hiragana,
CR_Katakana,
CR_Han,
CR_Latin,
CR_Greek,
CR_Cyrillic,
};
struct enc_property {
signed char name;
unsigned char ctype;
};
static const struct enc_property *onig_jis_property(/*!ANSI{*/const char *str, unsigned int len/*}!ANSI*/);
%}
struct enc_property;
%%
hiragana, onigenc_jis_hiragana
katakana, onigenc_jis_katakana
han, onigenc_jis_han
latin, onigenc_jis_latin
greek, onigenc_jis_greek
cyrillic, onigenc_jis_cyrillic
%%