mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
11 lines
186 B
C
11 lines
186 B
C
|
#include <libimagequant.h>
|
||
|
|
||
|
int main() {
|
||
|
liq_attr *attr = liq_attr_create();
|
||
|
if (!attr) {
|
||
|
return 1;
|
||
|
} else {
|
||
|
liq_attr_destroy(attr);
|
||
|
return 0;
|
||
|
}
|
||
|
}
|