summaryrefslogtreecommitdiffstats
path: root/gl/vsnzprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/vsnzprintf.c')
-rw-r--r--gl/vsnzprintf.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/gl/vsnzprintf.c b/gl/vsnzprintf.c
new file mode 100644
index 00000000..0d35195f
--- /dev/null
+++ b/gl/vsnzprintf.c
@@ -0,0 +1,62 @@
1/* Formatted output to strings.
2 Copyright (C) 2004, 2006-2026 Free Software Foundation, Inc.
3 Written by Simon Josefsson and Yoann Vandoorselaere <yoann@prelude-ids.org>.
4
5 This file is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
9
10 This file is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17
18#ifdef HAVE_CONFIG_H
19# include <config.h>
20#endif
21
22/* Specification. */
23#include <stdio.h>
24
25#include <errno.h>
26#include <stdarg.h>
27#include <stdint.h>
28#include <stdlib.h>
29#include <string.h>
30
31#include "vasnprintf.h"
32
33ptrdiff_t
34vsnzprintf (char *str, size_t size, const char *format, va_list args)
35{
36 size_t lenbuf = size;
37 char *output = vasnprintf (str, &lenbuf, format, args);
38 size_t len = lenbuf;
39
40 if (!output)
41 return -1;
42
43 if (output != str)
44 {
45 if (size)
46 {
47 size_t pruned_len = (len < size ? len : size - 1);
48 memcpy (str, output, pruned_len);
49 str[pruned_len] = '\0';
50 }
51
52 free (output);
53 }
54
55 if (len > PTRDIFF_MAX)
56 {
57 errno = ENOMEM;
58 return -1;
59 }
60
61 return len;
62}