PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ stringbuffer_lastchar()

char stringbuffer_lastchar ( stringbuffer_t s)

Return the last character in the buffer.

Definition at line 122 of file stringbuffer.c.

References stringbuffer_t::str_end, and stringbuffer_t::str_start.

Referenced by empty_to_wkt_sb().

123 {
124  if( s->str_end == s->str_start )
125  return 0;
126 
127  return *(s->str_end - 1);
128 }
char * str_start
Definition: stringbuffer.h:41
Here is the caller graph for this function: