PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ _lwt_ReverseElemidArray()

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

Definition at line 3050 of file lwgeom_topo.c.

3051 {
3052  LWT_ELEMID t;
3053  while (from < to)
3054  {
3055  t = ary[from];
3056  ary[from++] = ary[to];
3057  ary[to--] = t;
3058  }
3059 }
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: