1 /* Test of vasnprintf() and asnprintf() functions.
2 Copyright (C) 2007-2012 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 <http://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
21 #include "vasnprintf.h"
30 test_function (char * (*my_asnprintf
) (char *, size_t *, const char *, ...))
35 for (size
= 0; size
<= 8; size
++)
38 char *result
= my_asnprintf (NULL
, &length
, "%d", 12345);
39 ASSERT (result
!= NULL
);
40 ASSERT (strcmp (result
, "12345") == 0);
45 for (size
= 0; size
<= 8; size
++)
50 memcpy (buf
, "DEADBEEF", 8);
52 result
= my_asnprintf (buf
, &length
, "%d", 12345);
53 ASSERT (result
!= NULL
);
54 ASSERT (strcmp (result
, "12345") == 0);
57 ASSERT (result
!= buf
);
58 ASSERT (memcmp (buf
+ size
, "DEADBEEF" + size
, 8 - size
) == 0);
65 my_asnprintf (char *resultbuf
, size_t *lengthp
, const char *format
, ...)
70 va_start (args
, format
);
71 ret
= vasnprintf (resultbuf
, lengthp
, format
, args
);
79 test_function (my_asnprintf
);
85 test_function (asnprintf
);
89 main (int argc
, char *argv
[])