]> pd.if.org Git - pdclib/blobdiff - includes/stdlib.h
Added qsort.
[pdclib] / includes / stdlib.h
index e436c6f18d3cfcb795a656e953ad231ead9c3268..252ab9213d585213d732f0c9cc39efdf53777e1d 100644 (file)
@@ -59,6 +59,8 @@ void exit();
 
 /* Searching and sorting */
 
+void * bsearch( const void * key, const void * base, size_t nmemb, size_t size, int (*compar)( const void *, const void * ) );
+void qsort( void * base, size_t nmemb, size_t size, int (*compar)( const void *, const void * ) );
 
 /* Integer arithmetic functions */