Use spaces for indentation, not tabs.
[gnulib.git] / tests / unistdio / test-u32-vasnprintf1.c
1 /* Test of u32_vasnprintf() function.
2    Copyright (C) 2007-2008 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 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 #include "unistdio.h"
22
23 #include <errno.h>
24 #include <stdarg.h>
25 #include <stddef.h>
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include "unistr.h"
32
33 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
34 #define ASSERT(expr) \
35   do                                                                         \
36     {                                                                        \
37       if (!(expr))                                                           \
38         {                                                                    \
39           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
40           fflush (stderr);                                                   \
41           abort ();                                                          \
42         }                                                                    \
43     }                                                                        \
44   while (0)
45
46 #include "test-u32-asnprintf1.h"
47 #include "test-u32-printf1.h"
48
49 static uint32_t *
50 my_asnprintf (uint32_t *resultbuf, size_t *lengthp, const char *format, ...)
51 {
52   va_list args;
53   uint32_t *ret;
54
55   va_start (args, format);
56   ret = u32_vasnprintf (resultbuf, lengthp, format, args);
57   va_end (args);
58   return ret;
59 }
60
61 static uint32_t *
62 my_xasprintf (const char *format, ...)
63 {
64   va_list args;
65   size_t length;
66   uint32_t *ret;
67
68   va_start (args, format);
69   ret = u32_vasnprintf (NULL, &length, format, args);
70   va_end (args);
71   if (ret != NULL)
72     ASSERT (length == u32_strlen (ret));
73   return ret;
74 }
75
76 static void
77 test_vasnprintf ()
78 {
79   test_function (my_asnprintf);
80   test_xfunction (my_xasprintf);
81 }
82
83 int
84 main (int argc, char *argv[])
85 {
86   test_vasnprintf ();
87   return 0;
88 }