| 3825 | } |
| 3826 | |
| 3827 | int CmpStdRev ( const void *s1, const void *s2 ) |
| 3828 | { |
| 3829 | int cmp = -1 * StrCmp ( ( ( SORTLINE * ) s1 )->pwszSortEntry, ( ( SORTLINE * ) s2 )->pwszSortEntry ); |
| 3830 | return ( cmp ) ? cmp : -1 * StrCmp ( ( ( SORTLINE * ) s1 )->pwszLine, ( ( SORTLINE * ) s2 )->pwszLine ); |
| 3831 | } |
| 3832 | |
| 3833 | int CmpLogical ( const void *s1, const void *s2 ) |
| 3834 | { |
nothing calls this directly
no outgoing calls
no test coverage detected