blob: da5be5eecd1474f58e3f929326d7653e9f0daa1e (
plain)
1
2
3
4
5
6
7
8
9
10
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");
}
|