This file is indexed.

/usr/share/doc/cl-uffi/html/deref-array.html is in cl-uffi 2.1.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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>deref-array</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2" /><link rel="home" href="index.html" title="UFFI Reference Guide" /><link rel="up" href="aggregates.html" title="Aggregate Types" /><link rel="prev" href="def-array-pointer.html" title="def-array-pointer" /><link rel="next" href="def-union.html" title="def-union" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">deref-array</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="def-array-pointer.html">Prev</a> </td><th width="60%" align="center">Aggregate Types</th><td width="20%" align="right"> <a accesskey="n" href="def-union.html">Next</a></td></tr></table><hr /></div><div class="refentry" title="deref-array"><a id="deref-array"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>deref-array — Deference an array.
	<b>Macro</b></p></div><div class="refsynopsisdiv" title="Syntax"><h2>Syntax</h2><pre class="synopsis">
	  <code class="function">deref-array</code> <em class="replaceable"><code>array type position</code></em> =&gt; <span class="returnvalue">value</span>
	</pre></div><div class="refsect1" title="Arguments and Values"><a id="id405470"></a><h2>Arguments and Values</h2><div class="variablelist"><dl><dt><span class="term"><em class="parameter"><code>array</code></em></span></dt><dd><p>A foreign array.
	      </p></dd><dt><span class="term"><em class="parameter"><code>type</code></em></span></dt><dd><p>The foreign type of the array.
	      </p></dd><dt><span class="term"><em class="parameter"><code>position</code></em></span></dt><dd><p>An integer specifying the position to retrieve from
the array.
	      </p></dd><dt><span class="term"><span class="returnvalue">value</span></span></dt><dd><p>The value stored in the position of the array.
	      </p></dd></dl></div></div><div class="refsect1" title="Description"><a id="id405542"></a><h2>Description</h2><p>
	  Dereferences (retrieves) the value of an array element.
	</p></div><div class="refsect1" title="Examples"><a id="id405551"></a><h2>Examples</h2><pre class="screen">
(def-array-pointer ca :char)
(let ((fs (convert-to-foreign-string "ab")))
   (values (null-char-p (deref-array fs 'ca 0))
           (null-char-p (deref-array fs 'ca 2))))
=&gt; <code class="constant">NIL</code>
   <code class="constant">T</code>
	</pre></div><div class="refsect1" title="Notes"><a id="id405571"></a><h2>Notes</h2><p>
  The TYPE argument is ignored for CL implementations other than
  AllegroCL. If you want to cast a pointer to another type use
  WITH-CAST-POINTER together with DEREF-POINTER/DEREF-ARRAY.
        </p></div><div class="refsect1" title="Side Effects"><a id="id405582"></a><h2>Side Effects</h2><p>None.</p></div><div class="refsect1" title="Affected by"><a id="id405592"></a><h2>Affected by</h2><p>None.</p></div><div class="refsect1" title="Exceptional Situations"><a id="id405601"></a><h2>Exceptional Situations</h2><p>None.</p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="def-array-pointer.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="aggregates.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="def-union.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">def-array-pointer </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> def-union</td></tr></table></div></body></html>