This file is indexed.

/usr/include/udport/search-node.h is in libxgks-dev 2.6.1+dfsg.2-4+b1.

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
#ifndef	UD_SEARCH_NODE_H
#define	UD_SEARCH_NODE_H


typedef struct node_t
{
    const void	  *key;
    struct node_t *left, *right;
}
node;


#endif	/* header-file lockout */