No description
ffde4d4d92
The "files" parameter is not an array of pointer to uint8_t (uint8_t *files[]), but rather an pointer to an array of uint8_t (uint8_t (*files)[]). Since this syntax confuses the compiler (the program attempt to assign a value to what "files" is pointing to, which is supposed to be an array, which is not assignable), declare "files" as a pointer to a pointer to uint8_t (uint8_t **files) which makes everybody happy. Fixes issue 26. |
||
---|---|---|
cmake | ||
contrib | ||
debian | ||
examples | ||
libfreefare | ||
m4 | ||
test | ||
.gitignore | ||
AUTHORS | ||
ChangeLog | ||
CMakeLists.txt | ||
configure.ac | ||
COPYING | ||
HACKING | ||
libfreefare.pc.in | ||
Makefile.am | ||
NEWS | ||
README | ||
TODO |
The libfreefare project aims to provide a convenient API for Mifare card manipulations. Supported tags: - Mifare Classic 1k - Mifare Classic 4k - Mifare DESFire 2K/4K/8K - Mifare DESFire EV1 - Mifare Ultralight - Mifare UltralightC Supported features: - Mifare Application Directory (MAD) v1 - Mifare Application Directory (MAD) v2 - Mifare Application Directory (MAD) v3 (part of DESFire support)