PostGIS
2.4.9dev-r@@SVN_REVISION@@
◆
strtolower()
static char* strtolower
(
char *
str
)
static
Definition at line
186
of file
raster2pgsql.c
.
Referenced by
main()
.
186
{
187
int
j;
188
189
for
(j = strlen(str) - 1; j >= 0; j--)
190
str[j] = tolower(str[j]);
191
192
return
str;
193
}
Here is the caller graph for this function:
raster
loader
raster2pgsql.c
Generated by
1.8.13