diff --git a/src/cw/aciplist.c b/src/cw/aciplist.c index 45bb65fd..622ff0c5 100644 --- a/src/cw/aciplist.c +++ b/src/cw/aciplist.c @@ -16,6 +16,10 @@ */ +/** + * @file + * @brief Implements some aciplist functions + */ #include #include @@ -69,10 +73,12 @@ static void acip_del(void *d) free(d); } +/** + * Create a cw_aciplist_t object + * @return The created aciplist or NULL if an error has occured. + */ cw_aciplist_t cw_aciplist_create() { return avltree_create(acip_cmp, acip_del); } - -