X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-wchar-c%2B%2B.cc;h=bc70938284e41dfa6e6f399d0e31d02192c187cc;hb=adff17f337187985ea8c62b961fde5c9544911aa;hp=1a68a3d9ed493411a1868419cc93650668e17fbd;hpb=be86abb4e6d5be278524ebb6b84392b67b017ed3;p=gnulib.git diff --git a/tests/test-wchar-c++.cc b/tests/test-wchar-c++.cc index 1a68a3d9e..bc7093828 100644 --- a/tests/test-wchar-c++.cc +++ b/tests/test-wchar-c++.cc @@ -1,5 +1,5 @@ /* Test of substitute in C++ mode. - Copyright (C) 2010-2011 Free Software Foundation, Inc. + Copyright (C) 2010-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -143,6 +143,74 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::wcscmp, int, (const wchar_t *, const wchar_t *)); #endif +#if GNULIB_TEST_WCSNCMP +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsncmp, int, + (const wchar_t *, const wchar_t *, size_t)); +#endif + +#if GNULIB_TEST_WCSCASECMP +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcscasecmp, int, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSNCASECMP +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsncasecmp, int, + (const wchar_t *, const wchar_t *, size_t)); +#endif + +#if GNULIB_TEST_WCSCOLL +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcscoll, int, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSXFRM +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsxfrm, size_t, + (wchar_t *, const wchar_t *, size_t)); +#endif + +#if GNULIB_TEST_WCSDUP +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsdup, wchar_t *, (const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSCHR +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcschr, wchar_t *, + (const wchar_t *, wchar_t)); +#endif + +#if GNULIB_TEST_WCSRCHR +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsrchr, wchar_t *, + (const wchar_t *, wchar_t)); +#endif + +#if GNULIB_TEST_WCSCSPN +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcscspn, size_t, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSSPN +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsspn, size_t, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSPBRK +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcspbrk, wchar_t *, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSSTR +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsstr, wchar_t *, + (const wchar_t *, const wchar_t *)); +#endif + +#if GNULIB_TEST_WCSTOK +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcstok, wchar_t *, + (wchar_t *, const wchar_t *, wchar_t **)); +#endif + +#if GNULIB_TEST_WCSWIDTH +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcswidth, int, (const wchar_t *, size_t)); +#endif + int main ()