1 /* Test of xmemdup0() function.
2 Copyright (C) 2008-2017 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, or (at your option)
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 <http://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake <ebb9@byu.net>, 2008. */
29 main (int argc
, char **argv
)
31 char buffer
[10] = { 'a', 'b', 'c', 'd', '\0',
32 'f', 'g', 'h', 'i', 'j' };
36 char *result
= xmemdup0 (NULL
, 0);
42 char *result
= xmemdup0 ("", 0);
48 /* Various buffer lengths. */
50 char *result
= xmemdup0 (buffer
, 4);
52 ASSERT (strcmp (result
, buffer
) == 0);
56 char *result
= xmemdup0 (buffer
, 5);
58 ASSERT (strcmp (result
, buffer
) == 0);
59 ASSERT (result
[5] == '\0');
63 char *result
= xmemdup0 (buffer
, 9);
65 ASSERT (memcmp (result
, buffer
, 9) == 0);
66 ASSERT (result
[9] == '\0');
70 char *result
= xmemdup0 (buffer
, 10);
72 ASSERT (memcmp (result
, buffer
, 10) == 0);
73 ASSERT (result
[10] == '\0');