1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* get value scale of map
5  * returns the value scale of a map which is one of the
6  * constants prefixed by "VS_".
7  *
8  */
RgetValueScale(const MAP * map)9 CSF_VS RgetValueScale(
10 	const MAP *map) /* map handle */
11 {
12 	return(map->raster.valueScale);
13 }
14