mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-14 21:58:44 +08:00
31 lines
849 B
C
31 lines
849 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.
|
|
//-----------------------------------------------------------------------------
|
|
// StandAlone Mod
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#ifndef __HF_BOG_H
|
|
#define __HF_BOG_H
|
|
|
|
#include "proxmark3.h"
|
|
#include "mifareutil.h"
|
|
#include "iso14443a.h"
|
|
#include "protocols.h"
|
|
#include "util.h"
|
|
#include "standalone.h" // standalone definitions
|
|
#include <stdbool.h> // for bool
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "apps.h"
|
|
#include "printf.h"
|
|
|
|
#include "parity.h"
|
|
#include "random.h"
|
|
|
|
#endif /* __HF_BOG_H */
|