0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-11 03:33:00 +00:00
quakeforge/ruamoko/lib/stdlib.r

12 lines
422 B
R
Raw Normal View History

#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;