Initial dockapps git repo
[dockapps.git] / wmweather+-2.12 / b0rken / snprintf.c
bloba6540159abe1924be778bd2593a86fa0e062ede5
1 #include "config.h"
3 /* Copyright (C) 2002 Brad Jorsch <anomie@users.sourceforge.net>
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,
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, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #if defined(HAVE_WORKING_SNPRINTF)
22 /* snprintf works, nothing to do */
24 #else
26 /* snprintf is b0rken, use vsnprintf */
28 #include <stdio.h>
29 #include <stdarg.h>
31 int rpl_snprintf(char *str, size_t size, const char *format, ...){
32 va_list ap;
33 int r;
35 fprintf(stderr, "Using snprintf replacement\n");
37 va_start(ap, format);
38 r=vsnprintf(str, size, format, ap);
39 va_end(ap);
40 return r;
43 #endif