PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ stringbuffer_lastchar()

char stringbuffer_lastchar ( stringbuffer_t s)

Return the last character in the buffer.

Definition at line 110 of file stringbuffer.c.

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

References s.

Referenced by empty_to_wkt_sb().

Here is the caller graph for this function: