PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ strtolower()

static char* strtolower ( char *  str)
static

Definition at line 189 of file raster2pgsql.c.

189  {
190  int j;
191 
192  for (j = strlen(str) - 1; j >= 0; j--)
193  str[j] = tolower(str[j]);
194 
195  return str;
196 }
#define str(s)
Definition: raster2pgsql.c:34

References str.