mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
11 lines
203 B
C
11 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;
|
|
}
|