X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-wchar-c%2B%2B.cc;h=8ce0deaf4d8d5adf29c16c6485df312795aefc49;hb=6b8f1dd1a21ce49319795391e21adf645b64db3c;hp=79c9b3bc66e0a66dfe6f63837188918c6300a017;hpb=5768aa52f6dd4fe3266bfa42f6a58f26b89c6c89;p=gnulib.git diff --git a/tests/test-wchar-c++.cc b/tests/test-wchar-c++.cc index 79c9b3bc6..8ce0deaf4 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-2013 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 @@ -172,6 +172,45 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsxfrm, size_t, 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 ()