]> git.cworth.org Git - tar/blob - gnu/vsnprintf.c
upstream: Fix extraction of device nodes.
[tar] / gnu / vsnprintf.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Formatted output to strings.
4    Copyright (C) 2004, 2006-2010 Free Software Foundation, Inc.
5    Written by Simon Josefsson and Yoann Vandoorselaere <yoann@prelude-ids.org>.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License along
18    with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 /* Specification.  */
26 #include <stdio.h>
27
28 #include <errno.h>
29 #include <limits.h>
30 #include <stdarg.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 #include "vasnprintf.h"
35
36 /* Print formatted output to string STR.  Similar to vsprintf, but
37    additional length SIZE limit how much is written into STR.  Returns
38    string length of formatted string (which may be larger than SIZE).
39    STR may be NULL, in which case nothing will be written.  On error,
40    return a negative value.  */
41 int
42 vsnprintf (char *str, size_t size, const char *format, va_list args)
43 {
44   char *output;
45   size_t len;
46   size_t lenbuf = size;
47
48   output = vasnprintf (str, &lenbuf, format, args);
49   len = lenbuf;
50
51   if (!output)
52     return -1;
53
54   if (output != str)
55     {
56       if (size)
57         {
58           size_t pruned_len = (len < size ? len : size - 1);
59           memcpy (str, output, pruned_len);
60           str[pruned_len] = '\0';
61         }
62
63       free (output);
64     }
65
66   if (len > INT_MAX)
67     {
68       errno = EOVERFLOW;
69       return -1;
70     }
71
72   return len;
73 }