]> git.sur5r.net Git - openldap/blob - libraries/liblunicode/utbm/utbmstub.c
72ceed114b0ff34f35d1cadd415dc60bce9575a8
[openldap] / libraries / liblunicode / utbm / utbmstub.c
1 /*
2  * Copyright 1997, 1998, 1999 Computing Research Labs,
3  * New Mexico State University
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
19  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
20  * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  */
23 #ifndef lint
24 static char rcsid[] = "$Id: utbmstub.c,v 1.1 1999/09/21 15:45:18 mleisher Exp $";
25 #endif
26
27 #include "utbm.h"
28
29 /*
30  * This should be redefined to use the `isspace' function available in the
31  * Unicode support on the platform where this is being used.
32  */
33 #define _platform_isspace(x) 0
34
35 /*
36  * Return non-zero for any character that should be considered the equivalent
37  * of a space character.  Return zero otherwise.
38  */
39 int
40 _utbm_isspace(ucs4_t c, int compress)
41 {
42     if (compress)
43       return (c == 0x09 || c == 0x0a || c == 0x0d ||
44               c == 0x2028 || c == 0x2029 || _platform_isspace(c)) ? 1 : 0;
45
46     return _platform_isspace(c);
47         
48 }
49
50 /*
51  * Return non-zero if the character is a control character, or zero otherwise.
52  */
53 int
54 _utbm_iscntrl(ucs4_t c)
55 {
56     return 0;
57 }
58
59 /*
60  * Return non-zero if the character is a non-spacing character, or zero
61  * otherwise.
62  */
63 int
64 _utbm_nonspacing(ucs4_t c)
65 {
66     return 0;
67 }
68
69 /*
70  * Convert a character to lower case.
71  */
72 ucs4_t
73 _utbm_tolower(ucs4_t c)
74 {
75     return c;
76 }
77
78 /*
79  * Convert a character to upper case.
80  */
81 ucs4_t
82 _utbm_toupper(ucs4_t c)
83 {
84     return c;
85 }
86
87 /*
88  * Convert a character to title case.
89  */
90 ucs4_t
91 _utbm_totitle(ucs4_t c)
92 {
93     return c;
94 }