mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
mark additional function as static
This commit is contained in:
parent
1045392c73
commit
d3ae908b5f
2 changed files with 4 additions and 2 deletions
|
@ -79,7 +79,8 @@ static void print_info_result(const uint8_t *data) {
|
|||
|
||||
}
|
||||
|
||||
int em4x70_info(void) {
|
||||
// Note: arm source has a function with same name ... different signature.
|
||||
static int em4x70_info(void) {
|
||||
|
||||
em4x70_data_t edata = {
|
||||
.parity = false // TODO: try both? or default to true
|
||||
|
|
|
@ -31,8 +31,9 @@ int CmdEM4x70Unlock(const char *Cmd);
|
|||
int CmdEM4x70Auth(const char *Cmd);
|
||||
int CmdEM4x70WritePIN(const char *Cmd);
|
||||
int CmdEM4x70WriteKey(const char *Cmd);
|
||||
//int CmdEM4x70Recover(const char *Cmd);
|
||||
|
||||
int em4x70_info(void);
|
||||
// for `lf search`:
|
||||
bool detect_4x70_block(void);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue