GRASS GIS 7 Programmer's Manual
7.0.3(2016)-r00000
Main Page
Related Pages
Data Structures
Files
File List
Globals
forget.c
Go to the documentation of this file.
1
14
#include <grass/rowio.h>
15
22
void
Rowio_forget
(ROWIO * R,
int
row)
23
{
24
int
i;
25
26
if
(row < 0)
27
return
;
28
29
for
(i = 0; i < R->nrows; i++)
30
if
(row == R->rcb[i].row) {
31
R->rcb[i].row = -1;
/* no longer in memory */
32
break
;
33
}
34
}
Rowio_forget
void Rowio_forget(ROWIO *R, int row)
Release row from memory.
Definition:
forget.c:22
rowio
forget.c
Generated on Tue Apr 5 2016 12:25:31 for GRASS GIS 7 Programmer's Manual by
1.8.11