Coverage Report

Created: 2025-06-09 07:42

/src/gdal/frmts/pcraster/libcsf/gcellrep.c
Line
Count
Source (jump to first uncovered line)
1
#include "csf.h"
2
#include "csfimpl.h"
3
4
/* get cell representation
5
 * RgetCellRepr returns the in-file cell representation.
6
 * returns the cell representation 
7
 */
8
CSF_CR RgetCellRepr(
9
  const MAP *map) /* map handle */
10
0
{
11
0
  return(map->raster.cellRepr);
12
0
}
13
14
/* get cell representation as set by RuseAs
15
 * RgetUseCellRepr returns the cell representation as set by RuseAs
16
 * returns the cell representation as set by RuseAs
17
 */
18
19
CSF_CR RgetUseCellRepr(
20
  const MAP *map) /* map handle */
21
0
{
22
0
    return(map->appCR);
23
0
}