void resetLastRecord(cdbfapiPlus* handle);
The function resetLastRecord() resets the last read record number.
It forces function getRecord() not to use cached data but read a record from a disc.
{
// your code
getRecord(dbf, 5);
// your code
resetLastRecord(dbf);
getRecord(dbf, 5);
}