PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ stringbuffer_lastchar()

char stringbuffer_lastchar ( stringbuffer_t s)

Return the last character in the buffer.

Definition at line 107 of file stringbuffer.c.

108 {
109  if( s->str_end == s->str_start )
110  return 0;
111 
112  return *(s->str_end - 1);
113 }
char * s
Definition: cu_in_wkt.c:23

References s.

Referenced by empty_to_wkt_sb().

Here is the caller graph for this function: