MCPcopy Create free account
hub / github.com/Genivia/RE-flex / compose

Function compose

lib/unicode.cpp:109–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109int compose(int prev, int next)
110{
111 Tables::Compose::const_iterator i = tables.compose.find(next);
112 if (i != tables.compose.end())
113 for (const int *p = i->second; p[0] != 0; p += 2)
114 if (p[0] == prev)
115 return p[1];
116 return -1;
117}
118
119int toupper(int c)
120{

Callers 3

expand_listFunction · 0.85
insert_listFunction · 0.85
convertFunction · 0.85

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected