PostGIS  2.5.7dev-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.

123 {
124  if( s->str_end == s->str_start )
125  return 0;
126 
127  return *(s->str_end - 1);
128 }
char * s
Definition: cu_in_wkt.c:23

References s.

Referenced by empty_to_wkt_sb().

Here is the caller graph for this function: