blob: a0cf9180b5ff79e853e16cf72aa68934620a7a91 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en" />
<title>skalibs: the datastruct library interface</title>
<meta name="Description" content="skalibs: the datastruct library interface" />
<meta name="Keywords" content="skalibs datastruct libdatastruct library interface" />
<!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> -->
</head>
<body>
<p>
<a href="../libskarnet.html">libskarnet</a><br />
<a href="../index.html">skalibs</a><br />
<a href="//skarnet.org/software/">Software</a><br />
<a href="//skarnet.org/">skarnet.org</a>
</p>
<h1> The <tt>datastruct</tt> library interface </h1>
<p>
<tt>libdatastruct</tt> implements generic data structures like chained
lists and AVL trees, in a memory-efficient and CPU-efficient way.
</p>
<h2> Compiling </h2>
<ul>
<li> Use <tt>#include <skalibs/datastruct.h></tt> </li>
<li> You can also use the lower-level headers included by <tt>skalibs/datastruct.h</tt> instead. </li>
</ul>
<h2> Programming </h2>
<p>
<tt>skalibs/datastruct.h</tt> is a collection of several headers, each
one defining a specific data structure and providing functions to work on it.
</p>
<ul>
<li> <a href="genqdyn.html"><tt>skalibs/genqdyn.h</tt></a>: dynamically allocated queues for generic objects </li>
<li> FIXME: To be completed </li>
</ul>
</body>
</html>
|