12 lines
235 B
C
Raw Normal View History

2021-11-20 13:41:27 +01:00
#include <jasper/jasper.h>
2024-07-09 14:46:46 +02:00
#include <string.h>
2021-11-20 13:41:27 +01:00
2024-04-14 22:45:38 +02:00
int main(void)
2021-11-20 13:41:27 +01:00
{
2024-07-09 14:46:46 +02:00
jas_conf_clear();
jas_conf_set_max_mem_usage(0x100000);
jas_init_library();
jas_cleanup_library();
return strcmp(JAS_VERSION, CMAKE_EXPECTED_JASPER_VERSION);
2021-11-20 13:41:27 +01:00
}