From d5da100c55d80391d2e941a41c0e0dccf2a6e33e Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 28 May 2014 04:52:58 +0200 Subject: Still more documentation --- src/dlist.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/dlist.h') diff --git a/src/dlist.h b/src/dlist.h index a8118f0..0ca6928 100644 --- a/src/dlist.h +++ b/src/dlist.h @@ -24,7 +24,7 @@ */ /** - \file src/dlist.h + \file Doubly-linked lists */ @@ -38,8 +38,8 @@ typedef struct fastd_dlist_head fastd_dlist_head_t; /** Doubly-linked list element */ struct fastd_dlist_head { - fastd_dlist_head_t *prev; - fastd_dlist_head_t *next; + fastd_dlist_head_t *prev; /**< The next element of the list or NULL */ + fastd_dlist_head_t *next; /**< The previous element of the list or NULL */ }; -- cgit v1.2.3