mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
12 lines
203 B
C
12 lines
203 B
C
|
#include <jxl/encode.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
JxlEncoder* enc = JxlEncoderCreate(NULL);
|
||
|
if (enc == NULL) {
|
||
|
return EXIT_FAILURE;
|
||
|
}
|
||
|
JxlEncoderDestroy(enc);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|