This file is indexed.

/usr/share/doc/rsl/Example_RSL_copy.html is in librsl-doc 1.42-2.

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
<head>
</head>

<body>
<a HREF="index.html"> <IMG SRC="rsl.gif"> </a>
<hr>


<pre>#include &quot;rsl.h&quot;

main()
{
Radar *radar;
Volume *dz_copy;
Sweep *s1_copy;
Ray r33_copy;

radar = RSL_wsr88d_to_radar(&quot;nex.file.2&quot;, &quot;KMLB&quot;);

/* Copy of Volume for DZ. */
dz_copy = RSL_copy_volume(radar-&gt;v[DZ_INDEX]);

/* Copy of Sweep 1. */
s1_copy = RSL_copy_sweep(dz_copy-&gt;sweep[0]);

/* Copy of Ray 33. */
r33_copy = RSL_copy_ray(s1_copy-&gt;ray[32]);
}
</pre>

</body>