PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ srs_entry_cmp()

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

Definition at line 319 of file postgis/lwgeom_transform.c.

320 {
321  const struct srs_entry *entry_a = (const struct srs_entry*)(a);
322  const struct srs_entry *entry_b = (const struct srs_entry*)(b);
323  if (entry_a->sort < entry_b->sort) return -1;
324  else if (entry_a->sort > entry_b->sort) return 1;
325  else return 0;
326 }
double sort

References srs_entry::sort.

Referenced by srs_find_planar().

Here is the caller graph for this function: