source: EcnlProtoTool/trunk/onigmo-5.15.0/src/enc/ascii.c@ 321

Last change on this file since 321 was 321, checked in by coas-nagasima, 7 years ago

文字コードを設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 2.3 KB
Line 
1/**********************************************************************
2 ascii.c - Onigmo (Oniguruma-mod) (regular expression library)
3**********************************************************************/
4/*-
5 * Copyright (c) 2002-2006 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
6 * Copyright (c) 2011 K.Takata <kentkt AT csc DOT jp>
7 * All rights reserved.
8 *
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.
17 *
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.
29 */
30
31#include "regenc.h"
32
33OnigEncodingType OnigEncodingASCII = {
34 onigenc_single_byte_mbc_enc_len,
35 "US-ASCII", /* name */
36 1, /* max byte length */
37 1, /* min byte length */
38 onigenc_is_mbc_newline_0x0a,
39 onigenc_single_byte_mbc_to_code,
40 onigenc_single_byte_code_to_mbclen,
41 onigenc_single_byte_code_to_mbc,
42 onigenc_ascii_mbc_case_fold,
43 onigenc_ascii_apply_all_case_fold,
44 onigenc_ascii_get_case_fold_codes_by_str,
45 onigenc_minimum_property_name_to_ctype,
46 onigenc_ascii_is_code_ctype,
47 onigenc_not_support_get_ctype_code_range,
48 onigenc_single_byte_left_adjust_char_head,
49 onigenc_always_true_is_allowed_reverse_match,
50 ONIGENC_FLAG_NONE,
51};
Note: See TracBrowser for help on using the repository browser.