This file is indexed.

/usr/include/libAfterImage/ungif.h is in libafterimage-dev 2.2.12-6.

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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef UNGIF_H_HEADER_INCLUDED
#define UNGIF_H_HEADER_INCLUDED

#ifdef HAVE_GIF		/* GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF */

#ifdef __cplusplus
extern "C" {
#endif

#ifdef __GNUC__
#define ASIM_PrintGifError() do{ fprintf( stderr, "%s():%d:<%s> ",__FUNCTION__, __LINE__, path?path:"null" ); PrintGifError(); }while(0)
#else
#define ASIM_PrintGifError() do{ PrintGifError(); }while(0)
#endif

#define GIF_GCE_DELAY_BYTE_LOW	1
#define GIF_GCE_DELAY_BYTE_HIGH	2
#define GIF_GCE_TRANSPARENCY_BYTE	3
#define GIF_NETSCAPE_REPEAT_BYTE_LOW	1
#define GIF_NETSCAPE_REPEAT_BYTE_HIGH	2

void free_gif_saved_image( SavedImage *sp, Bool reusable );
void free_gif_saved_images( SavedImage *images, int count );


int fread_gif( GifFileType *gif, GifByteType* buf, int len );
GifFileType* open_gif_read( FILE *in_stream );

int get_gif_image_desc( GifFileType *gif, SavedImage *im );

int get_gif_saved_images( GifFileType *gif, int subimage, SavedImage **ret, int *ret_images  );

int write_gif_saved_images( GifFileType *gif, SavedImage *images, unsigned int count );

#ifdef __cplusplus
}
#endif

#endif			/* GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF GIF */


#endif