File: FindOpenJPEGVersion.c

package info (click to toggle)
texworks 0.6.11%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,896 kB
  • sloc: cpp: 32,194; ansic: 8,499; javascript: 972; xml: 345; python: 208; sh: 157; makefile: 24
file content (8 lines) | stat: -rw-r--r-- 98 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#include <openjpeg.h>
#include <stdio.h>

int main()
{
	printf("%s", opj_version());
	return 0;
}