PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ srs_entry_cmp()

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

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

330 {
331  const struct srs_entry *entry_a = (const struct srs_entry*)(a);
332  const struct srs_entry *entry_b = (const struct srs_entry*)(b);
333  if (entry_a->sort < entry_b->sort) return -1;
334  else if (entry_a->sort > entry_b->sort) return 1;
335  else return 0;
336 }
double sort

References srs_entry::sort.

Referenced by srs_find_planar().

Here is the caller graph for this function: