Rev 788 | Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 788 | Rev 1248 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** |
|
29 | #include <adt/list.h> |
30 | * @file list.c |
- | 31 | * @brief Functions completing doubly linked circular list implementaion. |
|
- | 32 | * |
|
- | 33 | * This file contains some of the functions implementing doubly linked circular lists. |
|
- | 34 | * However, this ADT is mostly implemented in @ref list.h. |
|
- | 35 | */ |
|
30 | 36 | ||
- | 37 | #include <adt/list.h> |
|
31 | 38 | ||
32 | /** Check for membership |
39 | /** Check for membership |
33 | * |
40 | * |
34 | * Check whether link is contained in the list head. |
41 | * Check whether link is contained in the list head. |
35 | * The membership is defined as pointer equivalence. |
42 | * The membership is defined as pointer equivalence. |