Coverage Report

Created: 2025-08-11 09:23

/src/gdal/frmts/pcraster/libcsf/gnrrows.c
Line
Count
Source
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
 */
11
size_t RgetNrRows(
12
  const MAP *map) /* map handle */
13
1
{
14
1
  return(map->raster.nrRows);
15
1
}