mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
11 lines
195 B
C
11 lines
195 B
C
|
#include <aribb24/aribb24.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
arib_instance_t *ptr = arib_instance_new(NULL);
|
||
|
if (!ptr)
|
||
|
return 1;
|
||
|
arib_instance_destroy(ptr);
|
||
|
return 0;
|
||
|
}
|