This file is indexed.

/usr/share/doc/libgtkada-doc/examples/powergnu/powergnu_pkg-callbacks.ads is in libgtkada-doc 2.24.4dfsg-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
with Gtk.Arguments;
with Gtk.Widget; use Gtk.Widget;

package Powergnu_Pkg.Callbacks is
   function On_Powergnu_Delete_Event
     (Object : access Gtk_Widget_Record'Class;
      Params : Gtk.Arguments.Gtk_Args) return Boolean;
   --  Delete event handler

   function On_Powergnu_Key_Press_Event
     (Object : access Gtk_Widget_Record'Class;
      Params : Gtk.Arguments.Gtk_Args) return Boolean;
   --  Key press event handler

   procedure Load_File
     (Power : access Powergnu_Record'Class;
      Name  : String);
   --  Load image Name from disk

end Powergnu_Pkg.Callbacks;