utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 31a87888867bd3b291fe84b48b0471b0038b51a1
parent eab97d16fba12c6d51c3101685d7ea5bc8ebad54
Author: Árpád Goretity  <h2co3@h2co3.org>
Date:   Sat, 14 Jan 2017 14:12:29 +0100

removed inclusion of non-portable header file (#94)


Diffstat:
Mutf8proc.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utf8proc.h b/utf8proc.h @@ -77,7 +77,7 @@ /** @} */ #include <stdlib.h> -#include <sys/types.h> + #if defined(_MSC_VER) && _MSC_VER < 1800 // MSVC prior to 2013 lacked stdbool.h and inttypes.h typedef signed char utf8proc_int8_t;