#include <stdint.h>
#include <stdlib.h>
Go to the source code of this file.
◆ POP
| #define POP |
( |
|
base, |
|
|
|
limit |
|
) |
| |
Value: stackptr -= 2; \
base = stackptr[0]; \
limit = stackptr[1]
Definition at line 37 of file qsort.c.
◆ PREPARE_STACK
Value:
Definition at line 30 of file qsort.c.
◆ PUSH
| #define PUSH |
( |
|
base, |
|
|
|
limit |
|
) |
| |
Value: stackptr[0] = base; \
stackptr[1] = limit; \
stackptr += 2
Definition at line 33 of file qsort.c.
◆ STACKSIZE
◆ memswp()
◆ qsort()
| void qsort |
( |
void * |
base, |
|
|
size_t |
nmemb, |
|
|
size_t |
size, |
|
|
int(*)(const void *, const void *) |
compar |
|
) |
| |