?? _rputrow.c
字號(hào):
/* * _rputrow.c */#include "csf.h"#include "csfimpl.h"/* write one row to a CSF raster file * RputRow writes one row of cell values to a * file. * returns * number of cells successfully written. Should be equal * to the number of columns if everything is OK. * * example * .so examples/_row.tr */size_t RputRow(MAP *map, /* map handle */size_t rowNr, /* Row number of row */void *buf) /* read-write. Buffer large enough to * hold one row in the in-file cell representation * or the in-app cell representation. * If these types are not equal then the buffer is * converted from the in-app to the in-file * cell representation. */{ return RputSomeCells(map, (map->raster.nrCols)*rowNr, (size_t)map->raster.nrCols, buf) ;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -