root/maint/gnulib/tests/test-string-c++.cc

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 /* Test of <string.h> substitute in C++ mode.
   2    Copyright (C) 2010-2021 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 <https://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 <string.h>
  23 
  24 #include "signature.h"
  25 
  26 
  27 #if GNULIB_TEST_FFSL
  28 SIGNATURE_CHECK (GNULIB_NAMESPACE::ffsl, int, (long int));
  29 #endif
  30 
  31 #if GNULIB_TEST_FFSLL
  32 SIGNATURE_CHECK (GNULIB_NAMESPACE::ffsll, int, (long long int));
  33 #endif
  34 
  35 #if GNULIB_TEST_MEMCHR
  36 SIGNATURE_CHECK (GNULIB_NAMESPACE::memchr, void *,
  37                  (void const *, int, size_t));
  38 #endif
  39 
  40 //SIGNATURE_CHECK (GNULIB_NAMESPACE::memcmp, int,
  41 //                 (void const *, void const *, size_t));
  42 
  43 #if GNULIB_TEST_MEMMEM
  44 SIGNATURE_CHECK (GNULIB_NAMESPACE::memmem, void *,
  45                  (void const *, size_t, void const *, size_t));
  46 #endif
  47 
  48 #if GNULIB_TEST_MEMPCPY
  49 SIGNATURE_CHECK (GNULIB_NAMESPACE::mempcpy, void *,
  50                  (void *, void const *, size_t));
  51 #endif
  52 
  53 #if GNULIB_TEST_MEMRCHR
  54 SIGNATURE_CHECK (GNULIB_NAMESPACE::memrchr, void *,
  55                  (void const *, int, size_t));
  56 #endif
  57 
  58 #if GNULIB_TEST_RAWMEMCHR
  59 SIGNATURE_CHECK (GNULIB_NAMESPACE::rawmemchr, void *, (void const *, int));
  60 #endif
  61 
  62 #if GNULIB_TEST_STPCPY
  63 SIGNATURE_CHECK (GNULIB_NAMESPACE::stpcpy, char *, (char *, char const *));
  64 #endif
  65 
  66 #if GNULIB_TEST_STPNCPY
  67 SIGNATURE_CHECK (GNULIB_NAMESPACE::stpncpy, char *,
  68                  (char *, char const *, size_t));
  69 #endif
  70 
  71 #if GNULIB_TEST_STRCHRNUL
  72 SIGNATURE_CHECK (GNULIB_NAMESPACE::strchrnul, char *, (char const *, int));
  73 #endif
  74 
  75 #if GNULIB_TEST_STRDUP
  76 SIGNATURE_CHECK (GNULIB_NAMESPACE::strdup, char *, (char const *));
  77 #endif
  78 
  79 #if GNULIB_TEST_STRNCAT
  80 SIGNATURE_CHECK (GNULIB_NAMESPACE::strncat, char *,
  81                  (char *, const char *, size_t));
  82 #endif
  83 
  84 #if GNULIB_TEST_STRNDUP
  85 SIGNATURE_CHECK (GNULIB_NAMESPACE::strndup, char *, (char const *, size_t));
  86 #endif
  87 
  88 #if GNULIB_TEST_STRNLEN
  89 SIGNATURE_CHECK (GNULIB_NAMESPACE::strnlen, size_t, (char const *, size_t));
  90 #endif
  91 
  92 #if GNULIB_TEST_STRPBRK
  93 SIGNATURE_CHECK (GNULIB_NAMESPACE::strpbrk, char *,
  94                  (char const *, char const *));
  95 #endif
  96 
  97 #if GNULIB_TEST_STRSEP
  98 SIGNATURE_CHECK (GNULIB_NAMESPACE::strsep, char *, (char **, char const *));
  99 #endif
 100 
 101 #if GNULIB_TEST_STRSTR
 102 SIGNATURE_CHECK (GNULIB_NAMESPACE::strstr, char *,
 103                  (const char *, const char *));
 104 #endif
 105 
 106 #if GNULIB_TEST_STRCASESTR
 107 SIGNATURE_CHECK (GNULIB_NAMESPACE::strcasestr, char *,
 108                  (const char *, const char *));
 109 #endif
 110 
 111 #if GNULIB_TEST_STRTOK_R
 112 SIGNATURE_CHECK (GNULIB_NAMESPACE::strtok_r, char *,
 113                  (char *, char const *, char **));
 114 #endif
 115 
 116 #if GNULIB_TEST_MBSLEN
 117 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbslen, size_t, (const char *));
 118 #endif
 119 
 120 #if GNULIB_TEST_MBSCHR
 121 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbschr, char *, (const char *, int));
 122 #endif
 123 
 124 #if GNULIB_TEST_MBSRCHR
 125 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbsrchr, char *, (const char *, int));
 126 #endif
 127 
 128 #if GNULIB_TEST_MBSPBRK
 129 SIGNATURE_CHECK (GNULIB_NAMESPACE::mbspbrk, char *,
 130                  (const char *, const char *));
 131 #endif
 132 
 133 #if GNULIB_TEST_STRERROR
 134 SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror, char *, (int));
 135 #endif
 136 
 137 #if GNULIB_TEST_STRERROR_R
 138 SIGNATURE_CHECK (GNULIB_NAMESPACE::strerror_r, int, (int, char *, size_t));
 139 #endif
 140 
 141 #if GNULIB_TEST_STRERRORNAME_NP
 142 SIGNATURE_CHECK (GNULIB_NAMESPACE::strerrorname_np, const char *, (int));
 143 #endif
 144 
 145 #if GNULIB_TEST_SIGABBREV_NP
 146 SIGNATURE_CHECK (GNULIB_NAMESPACE::sigabbrev_np, const char *, (int));
 147 #endif
 148 
 149 #if GNULIB_TEST_SIGDESCR_NP
 150 SIGNATURE_CHECK (GNULIB_NAMESPACE::sigdescr_np, const char *, (int));
 151 #endif
 152 
 153 #if GNULIB_TEST_STRSIGNAL
 154 SIGNATURE_CHECK (GNULIB_NAMESPACE::strsignal, char *, (int));
 155 #endif
 156 
 157 #if GNULIB_TEST_STRVERSCMP
 158 SIGNATURE_CHECK (GNULIB_NAMESPACE::strverscmp, int,
 159                  (const char *, const char *));
 160 #endif
 161 
 162 
 163 int
 164 main ()
     /* [previous][next][first][last][top][bottom][index][help] */
 165 {
 166 }

/* [previous][next][first][last][top][bottom][index][help] */