1 /* Test of vasprintf() and asprintf() functions.
2 Copyright (C) 2007-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/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
23 #include "signature.h"
24 SIGNATURE_CHECK (asprintf
, int, (char **, char const *, ...));
25 SIGNATURE_CHECK (vasprintf
, int, (char **, char const *, va_list));
34 my_asprintf (char **result
, const char *format
, ...)
39 va_start (args
, format
);
40 ret
= vasprintf (result
, format
, args
);
50 for (repeat
= 0; repeat
<= 8; repeat
++)
53 int retval
= my_asprintf (&result
, "%d", 12345);
55 ASSERT (result
!= NULL
);
56 ASSERT (strcmp (result
, "12345") == 0);
60 for (repeat
= 0; repeat
<= 8; repeat
++)
63 int retval
= my_asprintf (&result
, "%08lx", 12345UL);
65 ASSERT (result
!= NULL
);
66 ASSERT (strcmp (result
, "00003039") == 0);
76 for (repeat
= 0; repeat
<= 8; repeat
++)
79 int retval
= asprintf (&result
, "%d", 12345);
81 ASSERT (result
!= NULL
);
82 ASSERT (strcmp (result
, "12345") == 0);
86 for (repeat
= 0; repeat
<= 8; repeat
++)
89 int retval
= asprintf (&result
, "%08lx", 12345UL);
91 ASSERT (result
!= NULL
);
92 ASSERT (strcmp (result
, "00003039") == 0);
98 main (int argc
, char *argv
[])