GRASS Programmer's Manual
6.4.2(2012)
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
forget.c
Go to the documentation of this file.
1
#include <grass/rowio.h>
2
3
void
rowio_forget
(ROWIO * R,
int
row)
4
{
5
int
i;
6
7
if
(row < 0)
8
return
;
9
10
for
(i = 0; i < R->nrows; i++)
11
if
(row == R->rcb[i].row) {
12
R->rcb[i].row = -1;
/* no longer in memory */
13
break
;
14
}
15
}
lib
rowio
forget.c
Generated on Wed Jun 6 2012 14:04:21 for GRASS Programmer's Manual by
1.8.1