blob: bebb42abc2a6b866babaf7f724b2fcfa021fcec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _RFID_H
#define _RFID_H
#include <stdio.h>
#define DEBUGP(x, args ...) fprintf(stderr, "%s(%d):%s: " x, __FILE__, __LINE__, __FUNCTION__, ## args)
#define DEBUGPC(x, args ...) fprintf(stderr, x, ## args)
extern const char *rfid_hexdump(const void *data, unsigned int len);
int rfid_init();
#endif /* _RFID_H */
|