This file is indexed.

/usr/include/tachyon/tgafile.h is in libtachyon-dev 0.99~b2+dfsg-0.4.

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
/* 
 * tgafile.h - this file contains defines and structures for tgafile.c
 *
 *  $Id: tgafile.h,v 1.9 2003/08/22 05:05:12 johns Exp $
 */

/* declare other functions */
int createtgafile(char *, unsigned short, unsigned short);
void * opentgafile(char *);
void writetgaregion(void *, int, int, int, int, unsigned char *);
void closetgafile(void *);
int readtga(char * name, int * xres, int * yres, unsigned char **imgdata);
int writetga(char * name, int xres, int yres, unsigned char *imgdata);