Coverage Report

Created: 2025-06-09 07:42

/src/gdal/frmts/pcraster/libcsf/gnrrows.c
Line
Count
Source (jump to first uncovered line)
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
0
{
14
0
  return(map->raster.nrRows);
15
0
}