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

Function Ext2StrLastA

Ext2Mgr/Ext2Pipe.cpp:461–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

459}
460
461TCHAR *Ext2StrLastA(TCHAR *t, TCHAR *s)
462{
463 int lt = (int)strlen(t), ls = (int)strlen(s), i;
464
465 for (i = lt - ls; i >= 0; i--) {
466 if (0 == _strnicmp(&t[i], s, ls))
467 return &t[i];
468 }
469
470 return NULL;
471}
472
473TCHAR * Ext2BuildCMDA()
474{

Callers 2

Ext2InstallExt2SrvFunction · 0.85
Ext2BuildCMDAFunction · 0.85

Calls 1

_strnicmpFunction · 0.85

Tested by

no test coverage detected