BOOL markAsDeleted(cdbfapiPlus* handle, int fieldno);

The function markAsDeleted() marks a record as a deleted (puts a symbol '*' to the first position of record.)


{
    // your code
    markAsDeleted(dbf, 10);
    markAsDeleted(dbf, 20);
    // your code
}