| 2688 | //=========================================================================== |
| 2689 | |
| 2690 | static int QDECL paksort( const void *a, const void *b ) { |
| 2691 | char *aa, *bb; |
| 2692 | |
| 2693 | aa = *(char **)a; |
| 2694 | bb = *(char **)b; |
| 2695 | |
| 2696 | return FS_PathCmp( aa, bb ); |
| 2697 | } |
| 2698 | |
| 2699 | /* |
| 2700 | ================ |
nothing calls this directly
no test coverage detected