diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-27 00:28:51 +0000 |
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-27 00:28:51 +0000 |
| commit | e3863557f5762735bc2c911f94a96a84dae2d8f5 (patch) | |
| tree | 261ddedad7fa20511e667426d31a763b8e3c86ff /impls/vec.c | |
| parent | 8ee90f0d06baf15f4779c705c1e2863d586ba375 (diff) | |
| download | algorithms-e3863557f5762735bc2c911f94a96a84dae2d8f5.tar.gz algorithms-e3863557f5762735bc2c911f94a96a84dae2d8f5.tar.bz2 algorithms-e3863557f5762735bc2c911f94a96a84dae2d8f5.zip | |
Some cleanup of qsort and vec
Diffstat (limited to 'impls/vec.c')
| -rw-r--r-- | impls/vec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/impls/vec.c b/impls/vec.c index f73b9fc..442b1cf 100644 --- a/impls/vec.c +++ b/impls/vec.c @@ -16,7 +16,7 @@ @brief A vector, consisting of a header and some payload (data). @details The idea is that the user must never actually interact with this structure directly, only the data involved. Any vector related functions - deal with + will take the pointer to the data and look behind it to get the header. */ typedef struct { |
