Formatted output functions for Unicode strings.
[gnulib.git] / tests / unistdio / test-ulc-asnprintf1.h
1 /* Test of ulc_[v]asnprintf() functions.
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 2, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 static void
21 test_function (char * (*my_asnprintf) (char *, size_t *, const char *, ...))
22 {
23   char buf[8];
24   int size;
25
26   /* Test return value convention.  */
27
28   for (size = 0; size <= 8; size++)
29     {
30       size_t length = size;
31       char *result = my_asnprintf (NULL, &length, "%d", 12345);
32       ASSERT (result != NULL);
33       ASSERT (strcmp (result, "12345") == 0);
34       ASSERT (length == 5);
35       free (result);
36     }
37
38   for (size = 0; size <= 8; size++)
39     {
40       size_t length;
41       char *result;
42
43       memcpy (buf, "DEADBEEF", 8);
44       length = size;
45       result = my_asnprintf (buf, &length, "%d", 12345);
46       ASSERT (result != NULL);
47       ASSERT (strcmp (result, "12345") == 0);
48       ASSERT (length == 5);
49       if (size < 6)
50         ASSERT (result != buf);
51       ASSERT (memcmp (buf + size, "DEADBEEF" + size, 8 - size) == 0);
52       if (result != buf)
53         free (result);
54     }
55 }