MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / MRU_Compare

Function MRU_Compare

src/Helpers.c:1490–1497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1488}
1489
1490int MRU_Compare ( LPMRULIST pmru, LPCWSTR psz1, LPCWSTR psz2 )
1491{
1492 if ( pmru->iFlags & MRU_NOCASE ) {
1493 return ( lstrcmpi ( psz1, psz2 ) );
1494 } else {
1495 return ( lstrcmp ( psz1, psz2 ) );
1496 }
1497}
1498
1499BOOL MRU_Add ( LPMRULIST pmru, LPCWSTR pszNew )
1500{

Callers 1

MRU_AddFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected