void qsort( void *array, size_t n_elem, size_t elem_size,

			int (*fcmp)(const void *, const void *) )


	- prototype in stdlib.h

	- sorts the given array using the ACM quick sort routine
	- fcmp() is the same as for bsearch()