This file is indexed.

/usr/share/doc/xviewg/examples/extensions/panel_items/wizzy_data.c is in xview-examples 3.2p1.4-28.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
#ifndef lint
#ifdef sccs
static char     sccsid[] = "@(#)wizzy_data.c 1.1 91/02/28";
#endif
#endif

#include <xview/wizzy.h>

extern Xv_pkg xv_panel_item_pkg;

Pkg_private int wizzy_init();
Pkg_private Xv_opaque wizzy_set_avlist();
Pkg_private Xv_opaque wizzy_get_attr();
Pkg_private int wizzy_destroy();

Xv_pkg          xv_panel_wizzy_pkg = {
    "Wizzy Item",
    ATTR_WIZZY,
    sizeof(Xv_panel_wizzy),
    &xv_panel_item_pkg,
    wizzy_init,
    wizzy_set_avlist,
    wizzy_get_attr,
    wizzy_destroy,
    NULL			/* no find proc */
};