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 78f336addd5c179f0d21a05f15014945084d9e68
parent 59334e44999a527ee27f29e8dddd9daa1fda1980
Author: Steven G. Johnson <stevenj@alum.mit.edu>
Date:   Sun, 11 Dec 2016 16:17:11 -0500

use ptrdiff_t rather than ssize_t, as ssize_t is non-standard (it is POSIX, not C)

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

diff --git a/utf8proc.h b/utf8proc.h @@ -114,7 +114,7 @@ typedef uint16_t utf8proc_uint16_t; typedef int32_t utf8proc_int32_t; typedef uint32_t utf8proc_uint32_t; typedef size_t utf8proc_size_t; -typedef ssize_t utf8proc_ssize_t; +typedef ptrdiff_t utf8proc_ssize_t; typedef bool utf8proc_bool; #endif #include <limits.h>