Register keyword removal
[dragonfly.git] / include / wchar.h
1 /*-
2  * Copyright (c)1999 Citrus Project,
3  * All rights reserved.
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  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/include/wchar.h,v 1.3.2.2 2002/08/08 02:42:29 imp Exp $
27  * $DragonFly: src/include/wchar.h,v 1.2 2003/06/17 04:25:56 dillon Exp $
28  */
29
30 /*-
31  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
32  * All rights reserved.
33  *
34  * This code is derived from software contributed to The NetBSD Foundation
35  * by Julian Coleman.
36  *
37  * Redistribution and use in source and binary forms, with or without
38  * modification, are permitted provided that the following conditions
39  * are met:
40  * 1. Redistributions of source code must retain the above copyright
41  *    notice, this list of conditions and the following disclaimer.
42  * 2. Redistributions in binary form must reproduce the above copyright
43  *    notice, this list of conditions and the following disclaimer in the
44  *    documentation and/or other materials provided with the distribution.
45  * 3. All advertising materials mentioning features or use of this software
46  *    must display the following acknowledgement:
47  *        This product includes software developed by the NetBSD
48  *        Foundation, Inc. and its contributors.
49  * 4. Neither the name of The NetBSD Foundation nor the names of its
50  *    contributors may be used to endorse or promote products derived
51  *    from this software without specific prior written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
54  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
55  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
56  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
57  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
58  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
59  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
60  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
61  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
62  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
63  * POSSIBILITY OF SUCH DAMAGE.
64  *
65  *      $NetBSD: wchar.h,v 1.8 2000/12/22 05:31:42 itojun Exp $
66  */
67
68 #ifndef _WCHAR_H_
69 #define _WCHAR_H_
70
71 #include <sys/cdefs.h>
72 #include <machine/ansi.h>
73 #ifndef NULL
74 #define NULL    0
75 #endif
76
77 #ifndef __cplusplus
78 #ifdef  _BSD_WCHAR_T_
79 typedef _BSD_WCHAR_T_   wchar_t;
80 #undef  _BSD_WCHAR_T_
81 #endif
82 #endif
83
84 #ifdef  _BSD_MBSTATE_T_
85 typedef _BSD_MBSTATE_T_ mbstate_t;
86 #undef  _BSD_MBSTATE_T_
87 #endif
88
89 #ifdef  _BSD_WINT_T_
90 typedef _BSD_WINT_T_    wint_t;
91 #undef  _BSD_WINT_T_
92 #endif
93
94 #ifdef  _BSD_SIZE_T_
95 typedef _BSD_SIZE_T_    size_t;
96 #undef  _BSD_SIZE_T_
97 #endif
98
99 #ifndef WEOF
100 #define WEOF    ((wint_t)-1)
101 #endif
102
103 __BEGIN_DECLS
104 #if 0
105 /* XXX: not implemented */
106 size_t  mbrlen __P((const char * __restrict, size_t, mbstate_t * __restrict));
107 size_t  mbrtowc __P((wchar_t * __restrict, const char * __restrict, size_t,
108             mbstate_t * __restrict));
109 int     mbsinit __P((const mbstate_t *));
110 size_t  mbsrtowcs __P((wchar_t * __restrict, const char ** __restrict, size_t,
111             mbstate_t * __restrict));
112 size_t  wcrtomb __P((char * __restrict, wchar_t, mbstate_t * __restrict));
113 #endif
114 wchar_t *wcscat __P((wchar_t * __restrict, const wchar_t * __restrict));
115 wchar_t *wcschr __P((const wchar_t *, wchar_t));
116 int     wcscmp __P((const wchar_t *, const wchar_t *));
117 wchar_t *wcscpy __P((wchar_t * __restrict, const wchar_t * __restrict));
118 size_t  wcscspn __P((const wchar_t *, const wchar_t *));
119 size_t  wcslen __P((const wchar_t *));
120 wchar_t *wcsncat __P((wchar_t * __restrict, const wchar_t * __restrict,
121             size_t));
122 int     wcsncmp __P((const wchar_t *, const wchar_t *, size_t));
123 wchar_t *wcsncpy __P((wchar_t * __restrict , const wchar_t * __restrict,
124             size_t));
125 wchar_t *wcspbrk __P((const wchar_t *, const wchar_t *));
126 wchar_t *wcsrchr __P((const wchar_t *, wchar_t));
127 #if 0
128 /* XXX: not implemented */
129 size_t  wcsrtombs __P((char * __restrict, const wchar_t ** __restrict, size_t,
130             mbstate_t * __restrict));
131 #endif
132 size_t  wcsspn __P((const wchar_t *, const wchar_t *));
133 wchar_t *wcsstr __P((const wchar_t *, const wchar_t *));
134 wchar_t *wmemchr __P((const wchar_t *, wchar_t, size_t));
135 int     wmemcmp __P((const wchar_t *, const wchar_t *, size_t));
136 wchar_t *wmemcpy __P((wchar_t * __restrict, const wchar_t * __restrict,
137             size_t));
138 wchar_t *wmemmove __P((wchar_t *, const wchar_t *, size_t));
139 wchar_t *wmemset __P((wchar_t *, wchar_t, size_t));
140
141 size_t  wcslcat __P((wchar_t *, const wchar_t *, size_t));
142 size_t  wcslcpy __P((wchar_t *, const wchar_t *, size_t));
143 #if 0
144 /* XXX: not implemented */
145 int     wcswidth __P((const wchar_t *, size_t));
146 int     wcwidth __P((wchar_t));
147 #endif
148 __END_DECLS
149
150 #endif /* !_WCHAR_H_ */