From 6c94774b70f72952c4c512e4aa59a207ca1c34f2 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 1 Sep 2016 20:40:03 +0100 Subject: Add support for using utf8proc with --enable-utf8proc, useful for platforms (like OS X) where the system implementation is crap. From Joshua Rubin. --- compat.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'compat.h') diff --git a/compat.h b/compat.h index 7f17e193..28ca9c61 100644 --- a/compat.h +++ b/compat.h @@ -279,7 +279,14 @@ int openat(int, const char *, int, ...); #ifndef HAVE_REALLOCARRAY /* reallocarray.c */ -void *reallocarray(void *, size_t, size_t size); +void *reallocarray(void *, size_t, size_t); +#endif + +#ifdef HAVE_UTF8PROC +/* utf8proc.c */ +int utf8proc_wcwidth(wchar_t); +int utf8proc_mbtowc(wchar_t *, const char *, size_t); +int utf8proc_wctomb(char *, wchar_t); #endif #ifdef HAVE_GETOPT -- cgit v1.2.3