1 /* $NetBSD: utf8.h,v 1.3 2018/04/06 18:59:00 christos Exp $ */ 2 /* $OpenBSD: utf8.h,v 1.1 2016/05/25 23:48:45 schwarze 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 mprintf(const char *, ...) 20 __attribute__((format(printf, 1, 2))); 21 int fmprintf(FILE *, const char *, ...) 22 __attribute__((format(printf, 2, 3))); 23 int vfmprintf(FILE *, const char *, va_list) 24 __attribute__((format(printf, 2, 0))); 25 int snmprintf(char *, size_t, int *, const char *, ...) 26 __attribute__((format(printf, 4, 5))); 27