Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtSvc / include / codelibs / mbstring.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  * File:        mbstring.h $XConsortium: mbstring.h /main/3 1995/10/26 16:12:25 rswiston $
25  *
26  * (c) Copyright 1993, 1994 Hewlett-Packard Company
27  * (c) Copyright 1993, 1994 International Business Machines Corp.
28  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.
29  * (c) Copyright 1993, 1994 Novell, Inc.
30  */
31
32 #ifndef __MBSTRING_H_
33 #define __MBSTRING_H_
34
35 #if defined(USL) || defined(__uxp__)
36 #include <stdlib.h>
37 #endif
38
39 #include <stddef.h>
40
41 #ifdef apollo
42 #define _NEED_WCHAR_T
43 #include <sys/stdtypes.h>
44 #endif
45
46 #ifdef __cplusplus
47 extern "C"
48 {
49 #endif /* __cplusplus */
50
51 #if defined __cplusplus || defined __STDC__
52
53 #ifdef __cplusplus2_1
54     extern char *_mb_schr(char *str, wchar_t ch);
55     extern char *_mb_srchr(char *str, wchar_t ch);
56 #else /* __cplusplus2_1 */
57     extern char *_mb_schr(const char *str, wchar_t ch);
58     extern char *_mb_srchr(const char *str, wchar_t ch);
59 #endif /* __cplusplus2_1 */
60
61 #else /* defined __cplusplus || defined __STDC__ */
62
63     extern char *_mb_schr();
64     extern char *_mb_srchr();
65
66 #endif /* defined __cplusplus || defined __STDC__ */
67
68 #ifdef __cplusplus
69 }
70
71 #ifdef __cplusplus2_1
72 inline const char *_mb_schr(const char *str, wchar_t ch)
73 {
74     return (const char *)_mb_schr((char *)str, ch);
75 }
76
77 inline const char *_mb_srchr(const char *str, wchar_t ch)
78 {
79     return (const char *)_mb_srchr((char *)str, ch);
80 }
81 #endif /* __cplusplus2_1 */
82 #endif /* __cplusplus */
83
84 #endif /* __MBSTRING_H_ */