Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Predelnik/DSpellCheck
/ utf8_is_cont
Function
utf8_is_cont
src/common/utf8.cpp:26–28 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
24
}
25
26
bool utf8_is_cont(char c) {
27
return ((c & 0x80) == 0x80 && (c & 0x40) == 0); // 10xxxxx
28
}
29
30
char *utf8_dec(const char *string, const char *current) {
31
if (string >= current)
Callers
1
utf8_to_mapped_wstring
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected