summaryrefslogtreecommitdiff
path: root/src/klist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/klist.h')
-rw-r--r--src/klist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/klist.h b/src/klist.h
index 04e14d33..429f26f7 100644
--- a/src/klist.h
+++ b/src/klist.h
@@ -9,14 +9,14 @@ extern "C" {
#endif /* __cplusplus */
typedef struct {
- int Key; /* primary key */
- void *Data; /* data reference */
+ int Key; /**< primary key */
+ void *Data; /**< data reference */
} KlistNode_t;
typedef struct {
Dlist *List;
- int Clean; /* check flag */
- int Counter; /* counter (for making keys) */
+ int Clean; /**< check flag */
+ int Counter; /**< counter (for making keys) */
} Klist_t;