ReactOS 0.4.16-dev-2110-ge3521eb
sort.c File Reference
#include <win32k.h>
#include <debug.h>
Include dependency graph for sort.c:

Go to the source code of this file.

Macros

#define NDEBUG
 

Functions

void APIENTRY EngSort (IN OUT PBYTE Buf, IN ULONG ElemSize, IN ULONG ElemCount, IN SORTCOMP CompFunc)
 

Macro Definition Documentation

◆ NDEBUG

#define NDEBUG

Definition at line 11 of file sort.c.

Function Documentation

◆ EngSort()

void APIENTRY EngSort ( IN OUT PBYTE  Buf,
IN ULONG  ElemSize,
IN ULONG  ElemCount,
IN SORTCOMP  CompFunc 
)

Definition at line 19 of file sort.c.

20{
21 qsort(Buf, ElemCount, ElemSize, CompFunc);
22}
_ACRTIMP void __cdecl qsort(void *, size_t, size_t, int(__cdecl *)(const void *, const void *))