main.c 247 B

123456789101112
  1. #include <assert.h>
  2. #include <tiffio.h>
  3. int main()
  4. {
  5. /* Without any TIFF file to open, test that the call fails as
  6. expected. This tests that linking worked. */
  7. TIFF* tiff = TIFFOpen("invalid.tiff", "r");
  8. assert(!tiff);
  9. return 0;
  10. }