1 2 3 4 5 6 7
#ifndef __NFC_H__ #define __NFC_H__ #include <stdbool.h> bool initNFC(); void* processNFC();
8
void stopNFC();
9 10
#endif