Change copyright notice from GPLv2+ to GPLv3+.
[gnulib.git] / tests / unistdio / test-u16-vsnprintf1.c
1 /* Test of u16_vsnprintf() function.
2    Copyright (C) 2007 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
34 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
35 #define ASSERT(expr) \
36   do                                                                         \
37     {                                                                        \
38       if (!(expr))                                                           \
39         {                                                                    \
40           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
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 buf[1000];
53   int retval;
54   size_t length;
55   uint16_t *result;
56
57   va_start (args, format);
58   retval = u16_vsnprintf (buf, sizeof (buf), format, args);
59   va_end (args);
60   if (retval < 0 || retval >= (int) sizeof (buf))
61     return NULL;
62   length = u16_strlen (buf);
63   result = XNMALLOC (length + 1, uint16_t);
64   u16_cpy (result, buf, length + 1);
65   return result;
66 }
67
68 static void
69 test_vsnprintf ()
70 {
71   test_xfunction (my_xasprintf);
72 }
73
74 int
75 main (int argc, char *argv[])
76 {
77   test_vsnprintf ();
78   return 0;
79 }