int indexOfField(cdbfapiPlus* handle, char* fieldname);

The function indexOfField() returns a number of field with a particular name.
If there is no field with such name, it returns -1.


{
    // your code
    field = indexOfField(dbf, "FIRSTNAME");
    if ( field >= 0 )
    {
        // your code
    }
}