PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ rtpg_strtoupper()

char* rtpg_strtoupper ( char *  str)

Definition at line 100 of file rtpg_internal.c.

100  {
101  int j;
102 
103  for (j = strlen(str) - 1; j >= 0; j--)
104  str[j] = toupper(str[j]);
105 
106  return str;
107 }

Referenced by RASTER_colorMap(), RASTER_GDALWarp(), RASTER_mapAlgebra2(), RASTER_mapAlgebraFctNgb(), RASTER_nMapAlgebra(), RASTER_nMapAlgebraExpr(), RASTER_union_transfn(), and rtpg_union_unionarg_process().

Here is the caller graph for this function: