Project

General

Profile

Statistics
| Revision:

root / trunk / docs / libwireless / queue_8h-source.html @ 52

History | View | Annotate | Download (3.82 KB)

1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3
<title>libwireless: queue.h Source File</title>
4
<link href="doxygen.css" rel="stylesheet" type="text/css">
5
<link href="tabs.css" rel="stylesheet" type="text/css">
6
</head><body>
7
<!-- Generated by Doxygen 1.4.6 -->
8
<div class="tabs">
9
  <ul>
10
    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11
    <li><a href="modules.html"><span>Modules</span></a></li>
12
    <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
13
    <li id="current"><a href="files.html"><span>Files</span></a></li>
14
  </ul></div>
15
<div class="tabs">
16
  <ul>
17
    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
18
    <li><a href="globals.html"><span>Globals</span></a></li>
19
  </ul></div>
20
<h1>queue.h</h1><a href="queue_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 
21
<a name="l00010"></a>00010 <span class="keyword">struct </span><a class="code" href="structnode__def.html">node_def</a>;
22
<a name="l00011"></a>00011 
23
<a name="l00025"></a><a class="code" href="structQueue.html">00025</a> <span class="keyword">typedef</span> <span class="keyword">struct</span>
24
<a name="l00026"></a>00026 <span class="keyword"></span>{
25
<a name="l00030"></a><a class="code" href="structQueue.html#773cee3afdf5fbe12a225c48123b1e39">00030</a>         <span class="keyword">struct </span><a class="code" href="structnode__def.html">node_def</a>* head;
26
<a name="l00034"></a><a class="code" href="structQueue.html#85703d406e92d3aa92c3e9dbfd0e3007">00034</a>         <span class="keyword">struct </span><a class="code" href="structnode__def.html">node_def</a>* tail;
27
<a name="l00038"></a><a class="code" href="structQueue.html#c7d9701d244e3ba255ef8556e0562dc6">00038</a>         <span class="keywordtype">int</span> size;
28
<a name="l00039"></a>00039 } <a class="code" href="structQueue.html">Queue</a>;
29
<a name="l00040"></a>00040 
30
<a name="l00042"></a>00042 <a class="code" href="structQueue.html">Queue</a>* <a class="code" href="group__queue.html#gd79af6a8d562cb911d93f35b8825e148">queue_create</a>(<span class="keywordtype">void</span>);
31
<a name="l00044"></a>00044 <span class="keywordtype">void</span> <a class="code" href="group__queue.html#gd21ee75924298937673e2b8d66665466">queue_destroy</a>(<a class="code" href="structQueue.html">Queue</a>* q);
32
<a name="l00046"></a>00046 <span class="keywordtype">void</span> <a class="code" href="group__queue.html#gcdb01f4d0c861c4981829920d3973b77">queue_add</a>(<a class="code" href="structQueue.html">Queue</a>* q, <span class="keywordtype">void</span>* item);
33
<a name="l00048"></a>00048 <span class="keywordtype">void</span>* <a class="code" href="group__queue.html#gef91e5f119b77101f6c2e23eb1803059">queue_remove</a>(<a class="code" href="structQueue.html">Queue</a>* q);
34
<a name="l00050"></a>00050 <span class="keywordtype">void</span> <a class="code" href="group__queue.html#gbfe7f6f65eaffa1ee166811f259807e4">queue_remove_all</a>(<a class="code" href="structQueue.html">Queue</a>* q, <span class="keywordtype">void</span>* item);
35
<a name="l00052"></a>00052 <span class="keywordtype">int</span> <a class="code" href="group__queue.html#g97ae0b085c41d49c8a24e1e506967f9b">queue_size</a>(<a class="code" href="structQueue.html">Queue</a>* q);
36
<a name="l00054"></a>00054 <span class="keywordtype">int</span> <a class="code" href="group__queue.html#ga67a7f9940e9bbf21320a6f41e60998e">queue_is_empty</a>(<a class="code" href="structQueue.html">Queue</a>* q);
37
<a name="l00055"></a>00055 
38
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 21 12:57:06 2007 for libwireless by&nbsp;
39
<a href="http://www.doxygen.org/index.html">
40
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
41
</body>
42
</html>