PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ _lwt_ReverseElemidArray()

static void _lwt_ReverseElemidArray ( LWT_ELEMID ary,
int  from,
int  to 
)
static

Definition at line 3067 of file lwgeom_topo.c.

3068 {
3069  LWT_ELEMID t;
3070  while (from < to)
3071  {
3072  t = ary[from];
3073  ary[from++] = ary[to];
3074  ary[to--] = t;
3075  }
3076 }
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: