freebsd-src/crypto/openssh/utf8.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
1.3 KiB
C
Raw Normal View History

2021-04-23 19:13:32 +00:00
/* $OpenBSD: utf8.h,v 1.4 2021/04/03 06:18:41 djm Exp $ */
2017-01-31 12:29:48 +00:00
/*
* Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
2021-02-14 21:07:21 +00:00
int vasnmprintf(char **, size_t, int *, const char *, va_list);
2017-01-31 12:29:48 +00:00
int mprintf(const char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 1, 2)));
2017-01-31 12:29:48 +00:00
int fmprintf(FILE *, const char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 2, 3)));
2017-01-31 12:29:48 +00:00
int vfmprintf(FILE *, const char *, va_list);
int snmprintf(char *, size_t, int *, const char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 4, 5)));
2021-02-14 21:07:21 +00:00
int asmprintf(char **, size_t, int *, const char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 4, 5)));
2017-01-31 12:33:47 +00:00
void msetlocale(void);