mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
12 lines
251 B
C
12 lines
251 B
C
|
#include <jxl/thread_parallel_runner.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
void* runner = JxlThreadParallelRunnerCreate(NULL, 1);
|
||
|
if (runner == NULL) {
|
||
|
return EXIT_FAILURE;
|
||
|
}
|
||
|
JxlThreadParallelRunnerDestroy(runner);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|