]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - localedata/tst-mbswcs5.c
Regenerate libc.pot
[thirdparty/glibc.git] / localedata / tst-mbswcs5.c
index 81d7d5b4abc12d281a3f3d067377165e50845e35..5388fdc13f962f3b9626c4d59364ee383c096c2f 100644 (file)
@@ -1,22 +1,20 @@
 /* Test restarting behaviour of wcrtomb.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Bruno Haible <haible@ilog.fr>.
 
    The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
 
    The GNU C Library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
+   Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Library General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
 
 #include <stdio.h>
 #include <string.h>
 #define show(expr, nexp, bufexp) \
   {                                                                    \
     size_t res = expr;                                                 \
-    printf (#expr " -> %Zd", res);                                     \
+    printf (#expr " -> %zu", res);                                     \
     dst += res;                                                                \
     printf (", dst = buf+%td", dst - (char *) buf);                    \
     if (res != nexp || dst != (char *) (bufexp))                       \
       {                                                                        \
-       printf (", expected %Zd and buf+%td", nexp,                     \
+       printf (", expected %zu and buf+%td", (size_t) nexp,            \
                (bufexp) - (unsigned char *) buf);                      \
        result = 1;                                                     \
       }                                                                        \
     putc ('\n', stdout);                                               \
   }
 
-int
-main (void)
+static int
+do_test (void)
 {
   unsigned char buf[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
   const unsigned char bufcheck[7] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb, 0 };
@@ -73,3 +71,6 @@ main (void)
 
   return result;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"