2 * This file is part of DisOrder
3 * Copyright (C) 2004, 2007, 2008 Richard Kettlewell
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program 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 General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 /** @file lib/snprintf.c
19 * @brief UTF-8 capable *snprintf workalikes
22 #define NO_MEMORY_ALLOCATION
23 /* because used from log.c */
34 /** @brief A @ref sink that stores to a fixed buffer
36 * If there is too much output, it is truncated.
38 struct fixedstr_sink {
42 /** @brief Output buffer */
45 /** @brief Bytes written so far */
48 /** @brief Size of buffer */
52 static int fixedstr_write(struct sink *f, const void *buffer, int nbytes) {
53 struct fixedstr_sink *s = (struct fixedstr_sink *)f;
56 if((size_t)s->nbytes < s->size) {
57 if((size_t)nbytes > s->size - s->nbytes)
58 count = s->size - s->nbytes;
61 memcpy(s->buffer + s->nbytes, buffer, count);
67 int byte_vsnprintf(char buffer[],
71 struct fixedstr_sink s;
74 /* We have to make a sink directly here, since we can't safely do memory
75 * allocation here (we might be formatting the error message from a failed
76 * memory allocation) */
77 s.s.write = fixedstr_write;
81 n = byte_vsinkprintf(&s.s, fmt, ap);
83 /* add the null terminator (even if the printf failed) */
85 if((size_t)m >= bufsize) m = bufsize - 1;
91 int byte_snprintf(char buffer[], size_t bufsize, const char *fmt, ...) {
96 n = byte_vsnprintf(buffer, bufsize, fmt, ap);