Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 8_c_compatibility / cwchar / functions.cc
blob2c7e1c84b33719c3e821e8b625a70902a8ac87fe
1 // { dg-do compile }
3 // 2006-02-03 Paolo Carlini <pcarlini@suse.de>
4 //
5 // Copyright (C) 2006-2013 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
22 // 8.6 Additions to header <cwchar>
24 #include <tr1/cwchar>
25 #include <cstdio>
26 #include <cstdarg>
28 #if _GLIBCXX_USE_WCHAR_T
30 void test01(int dummy, ...)
32 std::va_list arg;
33 va_start(arg, dummy);
35 #if _GLIBCXX_HAVE_WCSTOF
36 const wchar_t* nptr1 = 0;
37 wchar_t** endptr1 = 0;
38 float fret;
39 fret = std::tr1::wcstof(nptr1, endptr1);
41 fret = fret; // Suppress unused warning.
42 #endif
44 #if _GLIBCXX_HAVE_VFWSCANF
45 FILE* stream = 0;
46 const wchar_t* format1 = 0;
47 int ret1;
48 ret1 = std::tr1::vfwscanf(stream, format1, arg);
50 ret1 = ret1; // Suppress unused warning.
51 #endif
53 #if _GLIBCXX_HAVE_VSWSCANF
54 const wchar_t* s = 0;
55 const wchar_t* format2 = 0;
56 int ret2;
57 ret2 = std::tr1::vswscanf(s, format2, arg);
59 ret2 = ret2; // Suppress unused warning.
60 #endif
62 #if _GLIBCXX_HAVE_VWSCANF
63 const wchar_t* format3 = 0;
64 int ret3;
65 ret3 = std::tr1::vwscanf(format3, arg);
67 ret3 = ret3; // Suppress unused warning.
68 #endif
70 #if _GLIBCXX_USE_C99
72 const wchar_t* nptr2 = 0;
73 wchar_t** endptr2 = 0;
74 long double ldret;
75 ldret = std::tr1::wcstold(nptr2, endptr2);
77 int base = 0;
78 long long llret;
79 unsigned long long ullret;
80 llret = std::tr1::wcstoll(nptr2, endptr2, base);
81 ullret = std::tr1::wcstoull(nptr2, endptr2, base);
83 ldret = ldret; // Suppress unused warnings.
84 llret = llret;
85 ullret = ullret;
87 #endif
90 #endif