2022-12-06 19:29:20 +00:00
|
|
|
#include "b15f/wrapper/b15f.h"
|
2022-12-06 19:45:35 +00:00
|
|
|
#include <stdio.h>
|
2022-12-06 19:29:20 +00:00
|
|
|
|
|
|
|
int main() {
|
2022-12-06 19:45:35 +00:00
|
|
|
char buf[512];
|
|
|
|
b15f_t* instance = get_instance(buf, sizeof(buf));
|
|
|
|
|
|
|
|
if (instance == NULL) {
|
|
|
|
fprintf(stderr, "%s", buf);
|
|
|
|
return -1;
|
|
|
|
}
|
2022-12-06 19:29:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|