pantry/projects/github.com/sekrit-twc/zimg/test.c
andrejrabcenko ecd5e156aa new file: projects/github.com/sekrit-twc/zimg/package.yml
new file:   projects/github.com/sekrit-twc/zimg/test.c
2023-05-01 14:13:03 -04:00

9 lines
222 B
C

#include <assert.h>
#include <zimg.h>
int main() {
zimg_image_format format;
zimg_image_format_default(&format, ZIMG_API_VERSION);
assert(ZIMG_MATRIX_UNSPECIFIED == format.matrix_coefficients);
return 0;
}