mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
12 lines
422 B
R
12 lines
422 B
R
|
#include <stdlib.h>
|
||
|
|
||
|
void *bsearch (void *key, void *array, int nmemb, int size,
|
||
|
int (*compare) (void *a, void *b)) = #0;
|
||
|
void *fbsearch (void *key, void *array, int nmemb, int size,
|
||
|
int (*compare) (void *a, void *b)) = #0;
|
||
|
void *qsort (void *array, int nmemb, int size,
|
||
|
int (*compare) (void *a, void *b)) = #0;
|
||
|
|
||
|
void prefixsum (int *array, int count) = #0;
|
||
|
void prefixsum (float *array, int count) = #0;
|