summaryrefslogtreecommitdiff
path: root/reader_yhy.c
diff options
context:
space:
mode:
Diffstat (limited to 'reader_yhy.c')
-rw-r--r--reader_yhy.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/reader_yhy.c b/reader_yhy.c
new file mode 100644
index 0000000..da5be5e
--- /dev/null
+++ b/reader_yhy.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+#include "nfcommander.h"
+
+static void __attribute__((constructor)) init() {
+ printf("This is the yhy reader plugin\n");
+}
+
+static void __attribute__((destructor)) cleanup() {
+ printf("This is the yhy reader plugin cleanup\n");
+}