PostGIS 3.7.0dev-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 258 of file gserialized_estimate.c.

259{
260 int ia = *((const int*)a);
261 int ib = *((const int*)b);
262
263 if ( ia == ib )
264 return 0;
265 else if ( ia > ib )
266 return 1;
267 else
268 return -1;
269}

Referenced by range_full().

Here is the caller graph for this function: