Merge pull request #969 from pwpiwi/gcc10_fixes
[legacy-proxmark3.git] / client / taginfo.h
blob6c1d6d420e7c382b2fd95eed6d96f7db04756547
1 //-----------------------------------------------------------------------------
2 // ISO/IEC 7816-6 manufacturer byte decoding
3 //-----------------------------------------------------------------------------
5 #ifndef MANUFACTURERS_H__
6 #define MANUFACTURERS_H__
8 #include <stdint.h>
10 extern char *getManufacturerName(uint8_t vendorID);
11 extern char *getChipInfo(uint8_t vendorID, uint8_t chipID);
13 #endif