summaryrefslogtreecommitdiffstats
path: root/src/vector.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-05-28 04:52:58 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-05-28 04:52:58 +0200
commitd5da100c55d80391d2e941a41c0e0dccf2a6e33e (patch)
tree1aca67556ed8ea1e2f9fa2a73ebf1a84e8cd34a7 /src/vector.h
parentd859894f7a88e07e7beae8dc355278cfd6c185e2 (diff)
downloadfastd-d5da100c55d80391d2e941a41c0e0dccf2a6e33e.tar
fastd-d5da100c55d80391d2e941a41c0e0dccf2a6e33e.zip
Still more documentation
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vector.h b/src/vector.h
index 526dfaf..0571d4d 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -24,7 +24,7 @@
*/
/**
- \file src/vector.h
+ \file
Typesafe dynamically sized arrays
*/
@@ -37,8 +37,8 @@
/** A vector descriptor */
typedef struct fastd_vector_desc {
- size_t allocated;
- size_t length;
+ size_t allocated; /**< The number of elements currently allocated */
+ size_t length; /**< The actual number of elements in the vector */
} fastd_vector_desc_t;