Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / btree_berkeley / snprintf.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: snprintf.c /main/3 1996/06/11 17:14:27 cde-hal $ */
24 #include <sys/types.h>
25 #include "cdefs.h"
26
27 #include <compat.h>
28
29 #ifdef __STDC__
30 #include <stdarg.h>
31 #else
32 #include <varargs.h>
33 #endif
34
35 int
36 #ifdef __STDC__
37 snprintf(char *str, size_t n, const char *fmt, ...)
38 #else
39 snprintf(str, n, fmt, va_alist)
40         char *str;
41         size_t n;
42         const char *fmt;
43         va_dcl
44 #endif
45 {
46         va_list ap;
47         char *rp;
48         int rval;
49 #ifdef __STDC__
50         va_start(ap, fmt);
51 #else
52         va_start(ap);
53 #endif
54 #ifdef VSPRINTF_CHARSTAR
55         rp = vsprintf(str, fmt, ap);
56         va_end(ap);
57         return (strlen(rp));
58 #else
59         rval = vsprintf(str, fmt, ap);
60         va_end(ap);
61         return (rval);
62 #endif
63 }
64
65 int
66 vsnprintf(str, n, fmt, ap)
67         char *str;
68         size_t n;
69         const char *fmt;
70         va_list ap;
71 {
72 #ifdef VSPRINTF_CHARSTAR
73         return (strlen(vsprintf(str, fmt, ap)));
74 #else
75         return (vsprintf(str, fmt, ap));
76 #endif
77 }