struct tm getDateTime(cdbfapiPlus* handle, int fieldno);

The function getDateTime() returns content of Date and DateTime field.
Do not forget to call readRecord().


{
    // your code
    readRecord( dbf, row );
    printf( "%s\n", asctime( getDateTime( dbf, 0 ) ) );
    // your code
}