@@ -41,7 +41,6 @@ const UTF8PROC_CATEGORY_CS = 28
41
41
const UTF8PROC_CATEGORY_CO = 29
42
42
const UTF8PROC_CATEGORY_CN = 30
43
43
44
- const UTF8PROC_NULLTERM = (1 << 0 )
45
44
const UTF8PROC_STABLE = (1 << 1 )
46
45
const UTF8PROC_COMPAT = (1 << 2 )
47
46
const UTF8PROC_COMPOSE = (1 << 3 )
@@ -60,10 +59,10 @@ const UTF8PROC_STRIPMARK = (1<<13)
60
59
let
61
60
const p = Array (Ptr{Uint8}, 1 )
62
61
global utf8proc_map
63
- function utf8proc_map (s:: String , flags:: Integer )
62
+ function utf8proc_map (s:: ByteString , flags:: Integer )
64
63
result = ccall (:utf8proc_map , Cssize_t,
65
64
(Ptr{Uint8}, Cssize_t, Ptr{Ptr{Uint8}}, Cint),
66
- s, 0 , p, flags | UTF8PROC_NULLTERM )
65
+ s, sizeof (s) , p, flags)
67
66
result < 0 && error (bytestring (ccall (:utf8proc_errmsg , Ptr{Uint8},
68
67
(Cssize_t,), result)))
69
68
a = ccall (:jl_ptr_to_array_1d , Vector{Uint8},
73
72
end
74
73
end
75
74
75
+ utf8proc_map (s:: String , flags:: Integer ) = utf8proc_map (bytestring (s), flags)
76
+
76
77
function normalize_string (s:: String ; stable:: Bool = false , compat:: Bool = false , compose:: Bool = true , decompose:: Bool = false , stripignore:: Bool = false , rejectna:: Bool = false , newline2ls:: Bool = false , newline2ps:: Bool = false , newline2lf:: Bool = false , stripcc:: Bool = false , casefold:: Bool = false , lump:: Bool = false , stripmark:: Bool = false )
77
78
flags = 0
78
79
stable && (flags = flags | UTF8PROC_STABLE)
0 commit comments