1 /* Test and measure stpncpy functions.
2 Copyright (C) 1999-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #define STRNCPY_RESULT(dst, len, n) ((dst) + ((len) > (n) ? (n) : (len)))
23 # define TEST_NAME "stpncpy"
25 # define TEST_NAME "wcpncpy"
27 #include "test-string.h"
30 # define SIMPLE_STPNCPY simple_stpncpy
31 # define STUPID_STPNCPY stupid_stpncpy
32 # define STPNCPY stpncpy
33 # define STRNLEN strnlen
37 # define SIMPLE_STPNCPY simple_wcpncpy
38 # define STUPID_STPNCPY stupid_wcpncpy
39 # define STPNCPY wcpncpy
40 # define STRNLEN wcsnlen
43 CHAR
*SIMPLE_STPNCPY (CHAR
*, const CHAR
*, size_t);
44 CHAR
*STUPID_STPNCPY (CHAR
*, const CHAR
*, size_t);
46 IMPL (STUPID_STPNCPY
, 0)
47 IMPL (SIMPLE_STPNCPY
, 0)
51 SIMPLE_STPNCPY (CHAR
*dst
, const CHAR
*src
, size_t n
)
54 if ((*dst
++ = *src
++) == '\0')
58 for (i
= 0; i
< n
; ++i
)
66 STUPID_STPNCPY (CHAR
*dst
, const CHAR
*src
, size_t n
)
68 size_t nc
= STRNLEN (src
, n
);
71 for (i
= 0; i
< nc
; ++i
)
79 #include "test-strncpy.c"