2 * This file is part of DisOrder
3 * Copyright (C) 2004, 2006 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 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * 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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 /** @file lib/asprintf.c @brief printf() workalikes */
37 /** @brief vasprintf() workalike without encoding errors
39 * This acts like vasprintf() except that it does not throw an error
40 * if you use a string outside the current locale's encoding rules,
41 * and it uses the memory allocation calls from @ref mem.h.
43 int byte_vasprintf(char **ptrp,
50 if((n = byte_vsinkprintf(sink_dynstr(&d), fmt, ap)) >= 0) {
57 /** @brief asprintf() workalike without encoding errors
59 * This acts like asprintf() except that it does not throw an error
60 * if you use a string outside the current locale's encoding rules,
61 * and it uses the memory allocation calls from @ref mem.h.
63 int byte_asprintf(char **ptrp,
70 n = byte_vasprintf(ptrp, fmt, ap);
75 /** @brief asprintf() workalike without encoding errors
77 * This acts like asprintf() except that it does not throw an error if
78 * you use a string outside the current locale's encoding rules; it
79 * uses the memory allocation calls from @ref mem.h; and it terminates
80 * the program on error.
82 int byte_xasprintf(char **ptrp,
89 n = byte_xvasprintf(ptrp, fmt, ap);
94 /** @brief vasprintf() workalike without encoding errors
96 * This acts like vasprintf() except that it does not throw an error
97 * if you use a string outside the current locale's encoding rules; it
98 * uses the memory allocation calls from @ref mem.h; and it terminates
99 * the program on error.
101 int byte_xvasprintf(char **ptrp,
106 if((n = byte_vasprintf(ptrp, fmt, ap)) < 0)
107 fatal(errno, "error calling byte_vasprintf");