This file is indexed.

/usr/include/ggi/gicaction_lazy.h is in libgiigic1-dev 1.1.2-2.1.

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
/* $Id: gicaction_lazy.h,v 1.4 2004/11/28 00:15:37 soyt Exp $
 * lazy.h - (c) 1999 Andreas Beck   becka@ggi-project.org
 *
 *   This software is placed in the public domain and can be used freely
 *   for any purpose. It comes without any kind of warranty, either
 *   expressed or implied, including, but not limited to the implied
 *   warranties of merchantability or fitness for a particular purpose.
 *   Use it at your own risk. the author is not responsible for any damage
 *   or consequences raised by use or inability to use this program.
 */

#ifndef _GGI_GICACTION_LAZY_H
#define _GGI_GICACTION_LAZY_H

#include <ggi/gic.h>
#include <ggi/gic-defs.h>

#define MAXRECOGNIZERS 32

typedef struct gicActionLazyData {

	gic_state	current;
	gic_state	pulse;
	
	gic_state	array[MAXRECOGNIZERS];
} gicActionLazyData;

GGIGICACTIONAPIFUNC void gicActionLazyAction(
	gic_handle_t hand,gic_actionlist *action,gic_feature *feature,
	gic_state newstate,gic_flag flag,int recnum);
GGIGICACTIONAPIFUNC gic_state gicActionLazyGetstate(gicActionLazyData *data);
GGIGICACTIONAPIFUNC void gicActionLazyReset(gicActionLazyData *data);

#endif /* _GGI_GICACTION_LAZY_H */