1 /* Test the system defined function stpncpy().
2 Copyright (C) 2003, 2008-2020 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/>. */
21 #include "signature.h"
22 SIGNATURE_CHECK (stpncpy
, char *, (char *, char const *, size_t));
34 for (i
= 0; i
< 10; i
++)
35 for (j
= 0; j
< 10; j
++)
36 for (k
= 0; k
< 10; k
++)
38 memset (from
, 'X', sizeof from
);
39 memcpy (from
, "SourceString", i
);
40 if (i
< 10) from
[i
] = '\0';
41 memset (to
, 'Y', sizeof to
);
42 memcpy (to
, "Destination", k
);
43 if (k
< 10) to
[k
] = '\0';
44 ret
= stpncpy (to
, from
, j
);
45 printf ("i = %2d, j = %2d, k = %2d: from = ", i
, j
, k
);
46 for (h
= 0; h
< 10; h
++)
47 if (from
[h
] >= 0x20 && from
[h
] < 0x7f)
50 printf ("\\x%02x", from
[h
]);
52 for (h
= 0; h
< 10; h
++)
53 if (to
[h
] >= 0x20 && to
[h
] < 0x7f)
56 printf ("\\x%02x", to
[h
]);
57 printf (" ret = to + %d\n", ret
- to
);