Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GJDuck/e9patch
/ e9towlower
Function
e9towlower
src/e9patch/e9loader_pe.cpp:292–297 ·
view source on GitHub ↗
* to_lower() */
Source
from the content-addressed store, hash-verified
290
* to_lower()
291
*/
292
static wchar_t e9towlower(wchar_t c)
293
{
294
if (c >= L
'A'
&& c <= L
'Z'
)
295
return L
'a'
+ (c - L
'A'
);
296
return c;
297
}
298
299
/*
300
* wcscasecmp()
Callers
1
e9wcscasecmp
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected