mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
5ca792c40e
For now, just bsearch (normal and fuzzy), qsort, and prefixsum (not in C's stdlib that I know of, but I think having native implementations of float and int prefix sums will be useful.
17 lines
701 B
C
17 lines
701 B
C
#ifndef __stdlib_h
|
|
#define __stdlib_h
|
|
|
|
//FIXME add const to qfcc?
|
|
// If compare is nil, the value pointed to by key and the first member of the
|
|
// elements in the array are treated as ints, making for fast searches when the
|
|
// first member of the element is the key and is a simple int
|
|
void *bsearch (void *key, void *array, int nmemb, int size,
|
|
int (*compare) (void *a, void *b));
|
|
void *fbsearch (void *key, void *array, int nmemb, int size,
|
|
int (*compare) (void *a, void *b));
|
|
void *qsort (void *array, int nmemb, int size,
|
|
int (*compare) (void *a, void *b));
|
|
@overload void prefixsum (int *array, int count);
|
|
@overload void prefixsum (float *array, int count);
|
|
|
|
#endif//__stdlib_h
|