xref: /netbsd-src/crypto/external/bsd/openssh/dist/utf8.h (revision 8ecbf5f02b752fcb7debe1a8fab1dc82602bc760)
1 /*	$NetBSD: utf8.h,v 1.4 2020/05/28 17:05:49 christos Exp $	*/
2 /* $OpenBSD: utf8.h,v 1.3 2020/05/01 06:28:52 djm Exp $ */
3 /*
4  * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 int	 vasnmprintf(char **, size_t, int *, const char *, va_list)
20 	    __attribute__((format(printf, 4, 0)));
21 int	 mprintf(const char *, ...)
22 	     __attribute__((format(printf, 1, 2)));
23 int	 fmprintf(FILE *, const char *, ...)
24 	     __attribute__((format(printf, 2, 3)));
25 int	 vfmprintf(FILE *, const char *, va_list)
26 	     __attribute__((format(printf, 2, 0)));
27 int	 snmprintf(char *, size_t, int *, const char *, ...)
28 	     __attribute__((format(printf, 4, 5)));
29 int	 asmprintf(char **, size_t, int *, const char *, ...)
30 	     __attribute__((format(printf, 4, 5)));
31