summaryrefslogtreecommitdiffstats
path: root/gl/vsnzprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/vsnzprintf.c')
-rw-r--r--gl/vsnzprintf.c65
1 files changed, 65 insertions, 0 deletions
diff --git a/gl/vsnzprintf.c b/gl/vsnzprintf.c
new file mode 100644
index 00000000..f6e6b1d4
--- /dev/null
+++ b/gl/vsnzprintf.c
@@ -0,0 +1,65 @@
1/* Formatted output to strings.
2 Copyright (C) 2004, 2006-2025 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 char *output;
37 size_t len;
38 size_t lenbuf = size;
39
40 output = vasnprintf (str, &lenbuf, format, args);
41 len = lenbuf;
42
43 if (!output)
44 return -1;
45
46 if (output != str)
47 {
48 if (size)
49 {
50 size_t pruned_len = (len < size ? len : size - 1);
51 memcpy (str, output, pruned_len);
52 str[pruned_len] = '\0';
53 }
54
55 free (output);
56 }
57
58 if (len > PTRDIFF_MAX)
59 {
60 errno = ENOMEM;
61 return -1;
62 }
63
64 return len;
65}