CHG: minor code clean up

ADD: added some  helper-functions in util.c
This commit is contained in:
iceman1001 2015-01-07 20:52:03 +01:00
commit 79544b28ad
4 changed files with 149 additions and 3 deletions

View file

@ -725,7 +725,6 @@ int doTestsWithKnownInputs()
int readKeyFile(uint8_t key[8])
{
FILE *f;
int retval = 1;
f = fopen("iclass_key.bin", "rb");
@ -738,7 +737,6 @@ int readKeyFile(uint8_t key[8])
fclose(f);
}
return retval;
}