1/* shortnames.h                                    -*- mode:c; coding:utf-8; -*-
2 *
3 *   Copyright (c) 2010-2018  Takashi Kato <ktakashi@ymail.com>
4 *
5 *   Redistribution and use in source and binary forms, with or without
6 *   modification, are permitted provided that the following conditions
7 *   are met:
8 *
9 *   1. Redistributions of source code must retain the above copyright
10 *      notice, this list of conditions and the following disclaimer.
11 *
12 *   2. Redistributions in binary form must reproduce the above copyright
13 *      notice, this list of conditions and the following disclaimer in the
14 *      documentation and/or other materials provided with the distribution.
15 *
16 *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
22 *   TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23 *   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 *   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 *   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 *   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 *  $Id: $
29 */
30#define LF      SG_EOL_STYLE_LF
31#define CR      SG_EOL_STYLE_CR
32#define NEL     SG_EOL_STYLE_NEL
33#define LS      SG_EOL_STYLE_LS
34#define CRNEL   SG_EOL_STYLE_CRNEL
35#define CRLF    SG_EOL_STYLE_CRLF
36#define E_NONE  SG_EOL_STYLE_E_NONE
37
38#define Lu  SG_GENERAL_CATEGORY_Lu
39#define Ll  SG_GENERAL_CATEGORY_Ll
40#define Lt  SG_GENERAL_CATEGORY_Lt
41#define Lm  SG_GENERAL_CATEGORY_Lm
42#define Lo  SG_GENERAL_CATEGORY_Lo
43#define Mn  SG_GENERAL_CATEGORY_Mn
44#define Mc  SG_GENERAL_CATEGORY_Mc
45#define Me  SG_GENERAL_CATEGORY_Me
46#define Nd  SG_GENERAL_CATEGORY_Nd
47#define Nl  SG_GENERAL_CATEGORY_Nl
48#define No  SG_GENERAL_CATEGORY_No
49#define Ps  SG_GENERAL_CATEGORY_Ps
50#define Pe  SG_GENERAL_CATEGORY_Pe
51#define Pi  SG_GENERAL_CATEGORY_Pi
52#define Pf  SG_GENERAL_CATEGORY_Pf
53#define Pd  SG_GENERAL_CATEGORY_Pd
54#define Pc  SG_GENERAL_CATEGORY_Pc
55#define Po  SG_GENERAL_CATEGORY_Po
56#define Sc  SG_GENERAL_CATEGORY_Sc
57#define Sm  SG_GENERAL_CATEGORY_Sm
58#define Sk  SG_GENERAL_CATEGORY_Sk
59#define So  SG_GENERAL_CATEGORY_So
60#define Zs  SG_GENERAL_CATEGORY_Zs
61#define Zp  SG_GENERAL_CATEGORY_Zp
62#define Zl  SG_GENERAL_CATEGORY_Zl
63#define Cc  SG_GENERAL_CATEGORY_Cc
64#define Cf  SG_GENERAL_CATEGORY_Cf
65#define Cs  SG_GENERAL_CATEGORY_Cs
66#define Co  SG_GENERAL_CATEGORY_Co
67#define Cn  SG_GENERAL_CATEGORY_Cn
68