mirror of
				https://github.com/Proxmark/proxmark3.git
				synced 2025-10-28 23:17:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			C
		
	
	
	
	
	
| //-----------------------------------------------------------------------------
 | |
| //
 | |
| // This code is licensed to you under the terms of the GNU GPL, version 2 or,
 | |
| // at your option, any later version. See the LICENSE.txt file for the text of
 | |
| // the license.
 | |
| //-----------------------------------------------------------------------------
 | |
| // Low frequency Indala commands
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| #ifndef CMDLFINDALA_H__
 | |
| #define CMDLFINDALA_H__
 | |
| 
 | |
| extern int CmdLFINDALA(const char *Cmd);
 | |
| extern int CmdIndalaDecode(const char *Cmd);
 | |
| extern int CmdIndalaRead(const char *Cmd);
 | |
| extern int CmdIndalaClone(const char *Cmd);
 | |
| 
 | |
| #endif
 |