1 /* Test of <string.h> substitute in C++ mode.
2 Copyright (C) 2010-2019 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010. */
19 #define GNULIB_NAMESPACE gnulib
24 #include "signature.h"
28 SIGNATURE_CHECK (GNULIB_NAMESPACE::ffsl
, int, (long int));
32 SIGNATURE_CHECK (GNULIB_NAMESPACE::ffsll
, int, (long long int));
35 #if GNULIB_TEST_MEMCHR
36 SIGNATURE_CHECK (GNULIB_NAMESPACE::memchr
, void *,
37 (void const *, int, size_t));
40 //SIGNATURE_CHECK (GNULIB_NAMESPACE::memcmp, int,
41 // (void const *, void const *, size_t));
43 #if GNULIB_TEST_MEMMEM
44 SIGNATURE_CHECK (GNULIB_NAMESPACE::memmem
, void *,
45 (void const *, size_t, void const *, size_t));
48 #if GNULIB_TEST_MEMPCPY
49 SIGNATURE_CHECK (GNULIB_NAMESPACE::mempcpy
, void *,
50 (void *, void const *, size_t));
53 #if GNULIB_TEST_MEMRCHR
54 SIGNATURE_CHECK (GNULIB_NAMESPACE::memrchr
, void *,
55 (void const *, int, size_t));
58 #if GNULIB_TEST_RAWMEMCHR
59 SIGNATURE_CHECK (GNULIB_NAMESPACE::rawmemchr
, void *, (void const *, int));
62 #if GNULIB_TEST_STPCPY
63 SIGNATURE_CHECK (GNULIB_NAMESPACE::stpcpy
, char *, (char *, char const *));
66 #if GNULIB_TEST_STPNCPY
67 SIGNATURE_CHECK (GNULIB_NAMESPACE::stpncpy
, char *,
68 (char *, char const *, size_t));
71 #if GNULIB_TEST_STRCHRNUL
72 SIGNATURE_CHECK (GNULIB_NAMESPACE::strchrnul
, char *, (char const *, int));
75 #if GNULIB_TEST_STRDUP
76 SIGNATURE_CHECK (GNULIB_NAMESPACE::strdup
, char *, (char const *));
79 #if GNULIB_TEST_STRNCAT
80 SIGNATURE_CHECK (GNULIB_NAMESPACE::strncat
, char *,
81 (char *, const char *, size_t));
84 #if GNULIB_TEST_STRNDUP
85 SIGNATURE_CHECK (GNULIB_NAMESPACE::strndup
, char *, (char const *, size_t));
88 #if GNULIB_TEST_STRNLEN
89 SIGNATURE_CHECK (GNULIB_NAMESPACE::strnlen
, size_t, (char const *, size_t));
92 #if GNULIB_TEST_STRPBRK
93 SIGNATURE_CHECK (GNULIB_NAMESPACE::strpbrk
, char *,
94 (char const *, char const *));
97 #if GNULIB_TEST_STRSEP
98 SIGNATURE_CHECK (GNULIB_NAMESPACE::strsep
, char *, (char **, char const *));
101 #if GNULIB_TEST_STRSTR
102 SIGNATURE_CHECK (GNULIB_NAMESPACE::strstr
, char *,
103 (const char *, const char *));
106 #if GNULIB_TEST_STRCASESTR
107 SIGNATURE_CHECK (GNULIB_NAMESPACE::strcasestr
, char *,
108 (const char *, const char *));
111 #if GNULIB_TEST_STRTOK_R
112 SIGNATURE_CHECK (GNULIB_NAMESPACE::strtok_r
, char *,
113 (char *, char const *, char **));
116 #if GNULIB_TEST_MBSLEN
117 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbslen
, size_t, (const char *));
120 #if GNULIB_TEST_MBSCHR
121 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbschr
, char *, (const char *, int));
124 #if GNULIB_TEST_MBSRCHR
125 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbsrchr
, char *, (const char *, int));
128 #if GNULIB_TEST_MBSPBRK
129 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbspbrk
, char *,
130 (const char *, const char *));
133 #if GNULIB_TEST_STRERROR
134 SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror
, char *, (int));
137 #if GNULIB_TEST_STRERROR_R
138 SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror_r
, int, (int, char *, size_t));
141 #if GNULIB_TEST_STRSIGNAL
142 SIGNATURE_CHECK (GNULIB_NAMESPACE::strsignal
, char *, (int));
145 #if GNULIB_TEST_STRVERSCMP
146 SIGNATURE_CHECK (GNULIB_NAMESPACE::strverscmp
, int,
147 (const char *, const char *));