MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2StrStr

Function Ext2StrStr

Ext2Mgr/enumDisk.cpp:5142–5152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5140}
5141
5142TCHAR *
5143Ext2StrStr(TCHAR *s, TCHAR *t)
5144{
5145 int ls = (int)_tcslen(s), lt = (int)_tcslen(t), i;
5146 for (i = 0; i + lt <= ls; i++) {
5147 if (0 == _tcsnicmp(&s[i], t, lt))
5148 return &s[i];
5149 }
5150
5151 return NULL;
5152}
5153
5154
5155BOOL Ext2RunMgrForCurrentUserVista()

Callers 2

Ext2SetAppAutorunVistaFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected