Home
last modified time | relevance | path

Searched refs:IsSurrogateL (Results 1 – 1 of 1) sorted by relevance

/fatfs-2.7.6/
Dff.c55 #define IsSurrogateL(c) ((c) >= 0xDC00 && (c) <= 0xDFFF) macro
745 if (!IsSurrogateH(uc) || !IsSurrogateL(wc)) return 0xFFFFFFFF; /* Wrong surrogate? */ in tchar2uni()
817 …if (szb < 2 || !IsSurrogateH(hs) || !IsSurrogateL(wc)) return 0; /* Buffer overflow or wrong surro… in put_utf()
6377 if (IsSurrogateL(dc)) continue; /* Broken surrogate pair? */
6382 if (!IsSurrogateL(wc)) continue; /* Broken surrogate pair? */
6515 if (!IsSurrogateL(c)) hs = 0; /* Discard high surrogate if not a surrogate pair */
6517 if (IsSurrogateL(c)) return; /* Discard stray low surrogate */