PostGIS 3.6.2dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ cmp_int()

static int cmp_int ( const void *  a,
const void *  b 
)
static

Integer comparison function for qsort.

Definition at line 262 of file gserialized_estimate.c.

263{
264 int ia = *((const int*)a);
265 int ib = *((const int*)b);
266
267 if ( ia == ib )
268 return 0;
269 else if ( ia > ib )
270 return 1;
271 else
272 return -1;
273}

Referenced by range_full().

Here is the caller graph for this function: