This file is indexed.

/usr/include/minidjvu/image-io/tiff.h is in libminidjvu-dev 0.8.svn.2010.05.06+dfsg-5+b2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * tiff.h - TIFF support
 */


/* TODO: save resolution */

MDJVU_FUNCTION int mdjvu_save_tiff(mdjvu_bitmap_t, const char *path, mdjvu_error_t *);


/* If the TIFF file has no resolution information,
 * then `resolution' will be unchanged.
 * `resolution' also may be NULL.
 */
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_load_tiff(const char *path, int32 *resolution, mdjvu_error_t *, uint32 idx);

MDJVU_FUNCTION int mdjvu_have_tiff_support(void);

MDJVU_FUNCTION void mdjvu_disable_tiff_warnings(void);

MDJVU_FUNCTION uint32 mdjvu_get_tiff_page_count(const char *path);