Port test-getaddrinfo to Solaris.
[gnulib.git] / tests / test-stpncpy.c
1 /* Test the system defined function stpncpy().
2    Copyright (C) 2003 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 <http://www.gnu.org/licenses/>.  */
16
17 #include <string.h>
18 #include <stdio.h>
19
20 int
21 main ()
22 {
23   char from[10];
24   char to[10];
25   int i, j, k, h;
26   char *ret;
27
28   for (i = 0; i < 10; i++)
29     for (j = 0; j < 10; j++)
30       for (k = 0; k < 10; k++)
31         {
32           memset (from, 'X', sizeof from);
33           memcpy (from, "SourceString", i);
34           if (i < 10) from[i] = '\0';
35           memset (to, 'Y', sizeof to);
36           memcpy (to, "Destination", k);
37           if (k < 10) to[k] = '\0';
38           ret = stpncpy (to, from, j);
39           printf ("i = %2d, j = %2d, k = %2d:  from = ", i, j, k);
40           for (h = 0; h < 10; h++)
41             if (from[h] >= 0x20 && from[h] < 0x7f)
42               putchar (from[h]);
43             else
44               printf ("\\x%02x", from[h]);
45           printf ("  to = ");
46           for (h = 0; h < 10; h++)
47             if (to[h] >= 0x20 && to[h] < 0x7f)
48               putchar (to[h]);
49             else
50               printf ("\\x%02x", to[h]);
51           printf ("  ret = to + %d\n", ret - to);
52         }
53
54   return 0;
55 }