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

Function CmpStd

src/Edit.c:3821–3825  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3819typedef int ( __stdcall *FNSTRCMP ) ( LPCWSTR, LPCWSTR );
3820
3821int CmpStd ( const void *s1, const void *s2 )
3822{
3823 int cmp = StrCmp ( ( ( SORTLINE * ) s1 )->pwszSortEntry, ( ( SORTLINE * ) s2 )->pwszSortEntry );
3824 return ( cmp ) ? cmp : StrCmp ( ( ( SORTLINE * ) s1 )->pwszLine, ( ( SORTLINE * ) s2 )->pwszLine );
3825}
3826
3827int CmpStdRev ( const void *s1, const void *s2 )
3828{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected