summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index 88c5a34a3..9d6d9a32c 100644
--- a/utf8.h
+++ b/utf8.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: utf8.h,v 1.1 2016/05/25 23:48:45 schwarze Exp $ */ 1/* $OpenBSD: utf8.h,v 1.3 2020/05/01 06:28:52 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org> 3 * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
4 * 4 *
@@ -15,6 +15,7 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18int vasnmprintf(char **, size_t, int *, const char *, va_list);
18int mprintf(const char *, ...) 19int mprintf(const char *, ...)
19 __attribute__((format(printf, 1, 2))); 20 __attribute__((format(printf, 1, 2)));
20int fmprintf(FILE *, const char *, ...) 21int fmprintf(FILE *, const char *, ...)
@@ -22,4 +23,6 @@ int fmprintf(FILE *, const char *, ...)
22int vfmprintf(FILE *, const char *, va_list); 23int vfmprintf(FILE *, const char *, va_list);
23int snmprintf(char *, size_t, int *, const char *, ...) 24int snmprintf(char *, size_t, int *, const char *, ...)
24 __attribute__((format(printf, 4, 5))); 25 __attribute__((format(printf, 4, 5)));
26int asmprintf(char **, size_t, int *, const char *, ...)
27 __attribute__((format(printf, 4, 5)));
25void msetlocale(void); 28void msetlocale(void);