Tests of module 'wchar' in C++ mode.
[gnulib.git] / tests / test-wchar-c++.cc
1 /* Test of <wchar.h> substitute in C++ mode.
2    Copyright (C) 2010 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #define GNULIB_NAMESPACE gnulib
20 #include <config.h>
21
22 #include <wchar.h>
23
24 #include "signature.h"
25
26
27 #if GNULIB_BTOWC
28 SIGNATURE_CHECK (GNULIB_NAMESPACE::btowc, wint_t, (int));
29 #endif
30
31 #if GNULIB_WCTOB
32 SIGNATURE_CHECK (GNULIB_NAMESPACE::wctob, int, (wint_t));
33 #endif
34
35 #if GNULIB_MBSINIT
36 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbsinit, int, (const mbstate_t *));
37 #endif
38
39 #if GNULIB_MBRTOWC
40 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbrtowc, size_t,
41                  (wchar_t *, const char *, size_t, mbstate_t *));
42 #endif
43
44 #if GNULIB_MBRLEN
45 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbrlen, size_t,
46                  (const char *, size_t, mbstate_t *));
47 #endif
48
49 #if GNULIB_MBSRTOWCS
50 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbsrtowcs, size_t,
51                  (wchar_t *, const char **, size_t, mbstate_t *));
52 #endif
53
54 #if GNULIB_MBSNRTOWCS
55 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbsnrtowcs, size_t,
56                  (wchar_t *, const char **, size_t, size_t, mbstate_t *));
57 #endif
58
59 #if GNULIB_WCRTOMB
60 SIGNATURE_CHECK (GNULIB_NAMESPACE::wcrtomb, size_t,
61                  (char *, wchar_t, mbstate_t *));
62 #endif
63
64 #if GNULIB_WCSRTOMBS
65 SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsrtombs, size_t,
66                  (char *, const wchar_t **, size_t, mbstate_t *));
67 #endif
68
69 #if GNULIB_WCSNRTOMBS
70 SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsnrtombs, size_t,
71                  (char *, const wchar_t **, size_t, size_t, mbstate_t *));
72 #endif
73
74 #if GNULIB_WCWIDTH
75 SIGNATURE_CHECK (GNULIB_NAMESPACE::wcwidth, int, (wchar_t));
76 #endif
77
78
79 int
80 main ()
81 {
82 }