sj4/include/sj4rkcv/kctype.h

107 lines
2.7 KiB
C
Raw Normal View History

2008-01-11 11:57:08 +00:00
/*
* Copyright (c) 1994 Sony Corporation
2026-06-19 01:49:53 +09:00
*
2008-01-11 11:57:08 +00:00
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
2026-06-19 01:49:53 +09:00
*
2008-01-11 11:57:08 +00:00
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
2026-06-19 01:49:53 +09:00
*
2008-01-11 11:57:08 +00:00
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2026-06-19 01:49:53 +09:00
*
2008-01-11 11:57:08 +00:00
* Except as contained in this notice, the name of Sony Corporation
* shall not be used in advertising or otherwise to promote the sale, use
* or other dealings in this Software without prior written authorization
* from Sony Corporation.
*
*/
#if !defined(__sony_news) || (defined(__sony_news) && !defined(SVR4))
#ifndef __KCTYPE
#define __KCTYPE
2026-06-20 02:12:04 +09:00
#define sjis2euc sj4_sjis2euc
#define jis2sjis sj4_jis2sjis
#define euctosjis sj4_euctosjis
#define sjis2jis sj4_sjis2jis
#define euc2sjis sj4_euc2sjis
#define jis2euc sj4_jis2euc
#define sjistoeuc sj4_sjistoeuc
2008-01-11 11:57:08 +00:00
#ifdef issjis1
#undef issjis1
#endif
2026-06-19 01:49:53 +09:00
#define issjis1(c) (((0x81 <= (c)) && ((c) <= 0x9f)) || \
((0xe0 <= (c)) && ((c) <= 0xfc)))
2008-01-11 11:57:08 +00:00
#ifdef issjis2
#undef issjis2
#endif
2026-06-19 01:49:53 +09:00
#define issjis2(c) (((0x40 <= (c)) && ((c) <= 0xfc)) && ((c) != 0x7f))
2008-01-11 11:57:08 +00:00
#ifdef iseuc
#undef iseuc
#endif
2026-06-19 01:49:53 +09:00
#define iseuc(c) ((0xa1 <= (c)) && ((c) <= 0xfe))
2008-01-11 11:57:08 +00:00
#ifdef iseuckana
#undef iseuckana
#endif
#define iseuckana(c) ((c) == 0x8e)
#ifdef iskana2
#undef iskana2
#endif
2026-06-19 01:49:53 +09:00
#define iskana2(c) ((0xa1 <= (c)) && ((c) <= 0xdf))
2008-01-11 11:57:08 +00:00
#ifdef jiszen
#undef jiszen
#endif
2026-06-19 01:49:53 +09:00
#define jiszen(c) (issjis1(((c) >> 8) & 0xff) && issjis2((c) & 0xff))
2008-01-11 11:57:08 +00:00
#ifdef isjjis
#undef isjjis
#endif
2026-06-19 01:49:53 +09:00
#define isjjis(c) ((0x21 <= (c)) && ((c) <= 0x7e))
2008-01-11 11:57:08 +00:00
#ifdef jstrlen
#undef jstrlen
#endif
2026-06-19 01:49:53 +09:00
#define jstrlen(s) euclen(s, 65535)
2008-01-11 11:57:08 +00:00
#ifdef iseuc3byte
#undef iseuc3byte
#endif
#define iseuc3byte(c) ((c) == 0x8f)
#ifdef iseuc2byte
#undef iseuc2byte
#endif
#define iseuc2byte(c) (iseuc(c) || ((c) == 0x8e))
#ifdef iskanji
#undef iskanji
#endif
2026-06-19 01:49:53 +09:00
#define iskanji issjis1
2008-01-11 11:57:08 +00:00
#ifdef iskanji2
#undef iskanji2
#endif
2026-06-19 01:49:53 +09:00
#define iskanji2 issjis2
2008-01-11 11:57:08 +00:00
#ifdef iskana
#undef iskana
#endif
2026-06-19 01:49:53 +09:00
#define iskana iskana2
2008-01-11 11:57:08 +00:00
#endif
#endif