Use spaces for indentation, not tabs.
[gnulib.git] / tests / unistdio / test-u16-vasprintf1.c
1 /* Test of u16_vasprintf() 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-u16-printf1.h"
47
48 static uint16_t *
49 my_xasprintf (const char *format, ...)
50 {
51   va_list args;
52   uint16_t *result;
53   int retval;
54
55   va_start (args, format);
56   retval = u16_vasprintf (&result, format, args);
57   va_end (args);
58   if (retval < 0)
59     return NULL;
60   ASSERT (result != NULL);
61   return result;
62 }
63
64 static void
65 test_vasprintf ()
66 {
67   test_xfunction (my_xasprintf);
68 }
69
70 int
71 main (int argc, char *argv[])
72 {
73   test_vasprintf ();
74   return 0;
75 }