]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/widechars.h
ncurses 6.1 - patch 20190223
[ncurses.git] / test / widechars.h
1 /****************************************************************************
2  * Copyright (c) 2012,2018 Free Software Foundation, Inc.                   *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 #ifndef __WIDECHARS_H
30 #define __WIDECHARS_H 1
31
32 #include <test.priv.h>
33
34 #if USE_WIDEC_SUPPORT
35
36 #if defined(_WIN32)
37 /*
38  * MinGW has wide-character functions, but they do not work correctly.
39  */
40
41 extern int _nc_mbtowc(wchar_t *pwc, const char *s, size_t n);
42 extern int __MINGW_NOTHROW _nc_mbtowc(wchar_t *pwc, const char *s, size_t n);
43 #define mbtowc(pwc,s,n) _nc_mbtowc(pwc,s,n)
44
45 extern int __MINGW_NOTHROW _nc_mblen(const char *, size_t);
46 #define mblen(s,n) _nc_mblen(s, n)
47
48 #endif /* _WIN32 */
49
50 #if HAVE_MBTOWC && HAVE_MBLEN
51 #define reset_mbytes(state) IGNORE_RC(mblen(NULL, 0)), IGNORE_RC(mbtowc(NULL, NULL, 0))
52 #define count_mbytes(buffer,length,state) mblen(buffer,length)
53 #define check_mbytes(wch,buffer,length,state) \
54         (int) mbtowc(&wch, buffer, length)
55 #define state_unused
56 #elif HAVE_MBRTOWC && HAVE_MBRLEN
57 #define reset_mbytes(state) init_mb(state)
58 #define count_mbytes(buffer,length,state) mbrlen(buffer,length,&state)
59 #define check_mbytes(wch,buffer,length,state) \
60         (int) mbrtowc(&wch, buffer, length, &state)
61 #else
62 make an error
63 #endif
64
65 #else
66
67 #endif /* USE_WIDEC_SUPPORT */
68
69 extern void widechars_stub(void);
70
71 #endif /* __WIDECHARS_H */