blob: 2a333b81ee4dc0edf04652d3a347ce07bcb51c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
*******************************************************************************
*
* Copyright (C) 1999-2004, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
* file name: uinvchar.h
* encoding: US-ASCII
* tab size: 8 (not used)
* indentation:2
*
* created on: 2004sep14
* created by: Markus W. Scherer
*
* Definitions for handling invariant characters, moved here from putil.c
* for better modularization.
*/
#ifndef __UINVCHAR_H__
#define __UINVCHAR_H__
#include "unicode/utypes.h"
/**
* Check if a char string only contains invariant characters.
* See utypes.h for details.
*
* @param s Input string pointer.
* @param length Length of the string, can be -1 if NUL-terminated.
* @return TRUE if s contains only invariant characters.
*
* @internal (ICU 2.8)
*/
U_INTERNAL UBool U_EXPORT2
uprv_isInvariantString(const char *s, int32_t length);
/**
* Check if a Unicode string only contains invariant characters.
* See utypes.h for details.
*
* @param s Input string pointer.
* @param length Length of the string, can be -1 if NUL-terminated.
* @return TRUE if s contains only invariant characters.
*
* @internal (ICU 2.8)
*/
U_INTERNAL UBool U_EXPORT2
uprv_isInvariantUString(const UChar *s, int32_t length);
/**
* \def U_UPPER_ORDINAL
* Get the ordinal number of an uppercase invariant character
* @internal
*/
#if U_CHARSET_FAMILY==U_ASCII_FAMILY
# define U_UPPER_ORDINAL(x) ((x)-'A')
#elif U_CHARSET_FAMILY==U_EBCDIC_FAMILY
# define U_UPPER_ORDINAL(x) (((x) < 'J') ? ((x)-'A') : \
(((x) < 'S') ? ((x)-'J'+9) : \
((x)-'S'+18)))
#else
# error Unknown charset family!
#endif
#endif
|