mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-08 07:37:35 +08:00
23 lines
464 B
C
23 lines
464 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* qsort.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: qsort.h,v 1.6 1998/09/01 04:36:20 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef QSORT_H
|
|
#define QSORT_H
|
|
|
|
|
|
extern void pg_qsort(void *bot,
|
|
size_t nmemb,
|
|
size_t size,
|
|
int (*compar) (void *, void *));
|
|
|
|
#endif /* QSORT_H */
|