This file is indexed.

/usr/include/dx/seglist.h is in libdx4-dev 1:4.4.4-7.

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
43
44
45
46
47
48
49
50
51
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#ifndef _DXI_SEGLIST_H_
#define _DXI_SEGLIST_H_

typedef struct slbuf
{
    struct slbuf   *next;
    int            size;
    int		   current;
    char           *items;
} SegListSegment;

typedef struct
{
    int            nextItem;
    int            incAlloc;
    int	           itemSize;
    SegListSegment *segments;
    SegListSegment *currentSeg;
    SegListSegment *iterSeg;
    int            next;
} SegList;

SegList        *DXNewSegList(int, int, int);
SegListSegment *DXNewSegListSegment(SegList *, int);
Error           DXDeleteSegList(SegList *);
Pointer         DXNewSegListItem(SegList *);
Pointer         DXGetNextSegListItem(SegList *);
Error           DXInitGetNextSegListItem(SegList *);
int             DXGetSegListItemCount(SegList *);
Error	        DXInitGetNextSegListSegment(SegList *);
SegListSegment *DXGetNextSegListSegment(SegList *);
Pointer	        DXGetSegListSegmentPointer(SegListSegment *);
int    	        DXGetSegListSegmentItemCount(SegListSegment *);

#endif /* _DXI_SEGLIST_H_ */

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif