PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_ReverseElemidArray()

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

Definition at line 3044 of file lwgeom_topo.c.

3045 {
3046  LWT_ELEMID t;
3047  while (from < to)
3048  {
3049  t = ary[from];
3050  ary[from++] = ary[to];
3051  ary[to--] = t;
3052  }
3053 }
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: