13 lines
230 B
C
13 lines
230 B
C
|
#include <stdio.h>
|
||
|
#include "../../include/ariplugin.h"
|
||
|
|
||
|
int ari_plugin_load() {
|
||
|
printf("hello from aridoodle :aridoodle:\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int ari_plugin_unload() {
|
||
|
printf("aridoodle says byebye!\n");
|
||
|
return 0;
|
||
|
}
|