This file is indexed.

/usr/include/minidjvu/alg/adjust_y.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
/*
 * adjust_y.h - adjust y coordinates of blits so the text won't look bumpy
 */

/*
 * For every blit B pointing to a bitmap with a substitution S,
 * set B pointing to S instead and adjust its X and Y accordingly.
 * X is matched by bounding box centers, but Y is not that simple...
 */
MDJVU_FUNCTION void mdjvu_adjust(mdjvu_image_t image);


/*
 * The same for multipage case.
 * Before the call, pages *may not* contain blits from dictionary bitmaps.
 */
MDJVU_FUNCTION void mdjvu_multipage_adjust(mdjvu_image_t dict,
                                           int32 npages,
                                           mdjvu_image_t *);