PostGIS  3.6.1dev-r@@SVN_REVISION@@

◆ srs_entry_cmp()

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

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

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

References srs_entry::sort.

Referenced by srs_find_planar().

Here is the caller graph for this function: