From ff8ddcef6032bcd20fa2b8097ab9ad7d785cc3c8 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 22 Sep 2007 12:11:32 +0100 Subject: [PATCH] doxygen Organization: Straylight/Edgeware From: Richard Kettlewell --- lib/vector.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/vector.h b/lib/vector.h index 6cadaf1..081a71d 100644 --- a/lib/vector.h +++ b/lib/vector.h @@ -46,8 +46,12 @@ #define VECTOR_TYPE(NAME,ETYPE,REALLOC) \ \ struct NAME { \ + /** @brief Pointer to elements */ \ ETYPE *vec; \ - int nvec, nslots; \ + /** @brief Number of elements */ \ + int nvec; \ + /** @brief Number of slots */ \ + int nslots; \ }; \ \ static inline void NAME##_init(struct NAME *v) { \ -- [mdw]