diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/klist.h | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/klist.h')
-rw-r--r-- | src/klist.h | 8 |
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; |