Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 98 of file ff_dir.c.
Referenced by FF_CreateDirent(), FF_FindEntryInDir(), and FF_PopulateLongDirent().
{ FF_T_UINT8 cNameLen; FF_T_UINT8 ChkSum = 0; for(cNameLen = 11; cNameLen != 0; cNameLen--) { ChkSum = ((ChkSum & 1) ? 0x80 : 0) + (ChkSum >> 1) + *pa_pShortName++; } return ChkSum; }