[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / enc / shift_jis.c
blobf1355d2d95fcb419b304aecfff07c10607549afb
1 /**********************************************************************
2 shift_jis.c - Onigmo (Oniguruma-mod) (regular expression library)
3 **********************************************************************/
4 /*-
5 * Copyright (c) 2002-2009 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
6 * Copyright (c) 2011-2017 K.Takata <kentkt AT csc DOT jp>
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
31 #include "shift_jis.h"
33 OnigEncodingDefine(shift_jis, Shift_JIS) = {
34 mbc_enc_len,
35 "Shift_JIS", /* name */
36 2, /* max byte length */
37 1, /* min byte length */
38 onigenc_is_mbc_newline_0x0a,
39 mbc_to_code,
40 code_to_mbclen,
41 code_to_mbc,
42 mbc_case_fold,
43 apply_all_case_fold,
44 get_case_fold_codes_by_str,
45 property_name_to_ctype,
46 is_code_ctype,
47 get_ctype_code_range,
48 left_adjust_char_head,
49 is_allowed_reverse_match,
50 onigenc_ascii_only_case_map,
52 ONIGENC_FLAG_NONE,
55 * Name: Shift_JIS
56 * MIBenum: 17
57 * Link: http://www.iana.org/assignments/character-sets
58 * Link: https://ja.wikipedia.org/wiki/Shift_JIS
62 * Name: MacJapanese
63 * Link: http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/JAPANESE.TXT
64 * Link: https://ja.wikipedia.org/wiki/MacJapanese
66 ENC_REPLICATE("MacJapanese", "Shift_JIS")
67 ENC_ALIAS("MacJapan", "MacJapanese")