Use spaces for indentation, not tabs.
[gnulib.git] / tests / unistdio / test-u16-vsnprintf1.c
1 /* Test of u16_vsnprintf() function.
2    Copyright (C) 2007-2009 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 #include "xalloc.h"
33 #include "progname.h"
34
35 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
36 #define ASSERT(expr) \
37   do                                                                         \
38     {                                                                        \
39       if (!(expr))                                                           \
40         {                                                                    \
41           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
42           fflush (stderr);                                                   \
43           abort ();                                                          \
44         }                                                                    \
45     }                                                                        \
46   while (0)
47
48 #include "test-u16-printf1.h"
49
50 static uint16_t *
51 my_xasprintf (const char *format, ...)
52 {
53   va_list args;
54   uint16_t buf[1000];
55   int retval;
56   size_t length;
57   uint16_t *result;
58
59   va_start (args, format);
60   retval = u16_vsnprintf (buf, sizeof (buf), format, args);
61   va_end (args);
62   if (retval < 0 || retval >= (int) sizeof (buf))
63     return NULL;
64   length = u16_strlen (buf);
65   result = XNMALLOC (length + 1, uint16_t);
66   u16_cpy (result, buf, length + 1);
67   return result;
68 }
69
70 static void
71 test_vsnprintf ()
72 {
73   test_xfunction (my_xasprintf);
74 }
75
76 int
77 main (int argc, char *argv[])
78 {
79   set_program_name (argv[0]);
80
81   test_vsnprintf ();
82
83   return 0;
84 }