mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
70373666f1
* new file: projects/pngquant.org/lib/package.yml new file: projects/pngquant.org/lib/test.c * script shorter
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;
|
|
}
|
|
} |