1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* number of rows in a map
5  * RgetNrCols returns the number of rows in a map
6  * returns the number of rows in a map
7  *
8  * example
9  * .so examples/csfdump1.tr
10  */
RgetNrCols(const MAP * map)11 size_t RgetNrRows(
12 	const MAP *map) /* map handle */
13 {
14 	return(map->raster.nrRows);
15 }
16