aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 02:36:30 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 02:45:30 +0630
commitaa78a66e7b1c3744c5a1f26aa2546fbc1ac2d161 (patch)
tree572a2a6d409b7b9e33ff2ffb2ce7fd0f6641efc9 /lib
parent340eb164cf6ffe60e66f06350a423fcc08b35ac2 (diff)
downloadovm-aa78a66e7b1c3744c5a1f26aa2546fbc1ac2d161.tar.gz
ovm-aa78a66e7b1c3744c5a1f26aa2546fbc1ac2d161.tar.bz2
ovm-aa78a66e7b1c3744c5a1f26aa2546fbc1ac2d161.zip
Documented lib/darr.h
Diffstat (limited to 'lib')
-rw-r--r--lib/darr.h43
1 files changed, 38 insertions, 5 deletions
diff --git a/lib/darr.h b/lib/darr.h
index aa37d27..f36c034 100644
--- a/lib/darr.h
+++ b/lib/darr.h
@@ -43,13 +43,46 @@ typedef struct
*/
#define DARR_AT(TYPE, DARR_DATA, IND) ((TYPE *)(DARR_DATA))[(IND)]
-void darr_init(darr_t *, size_t);
-void darr_ensure_capacity(darr_t *, size_t);
-void darr_append_byte(darr_t *, byte);
-void darr_append_bytes(darr_t *, byte *, size_t);
-byte darr_at(darr_t *, size_t);
+/** Initialise a dynamic array (darr) with n elements.
+ * If n == 0 then initialise with DARR_DEFAULT_SIZE elements.
+ */
+void darr_init(darr_t *darr, size_t n);
+
+/** Ensure the dynamic array (darr) has at least n elements free.
+ * If the dynamic array has less than n elements free it will
+ * reallocate.
+ */
+void darr_ensure_capacity(darr_t *darr, size_t n);
+
+/** Append a byte (b) to the dynamic array (darr).
+ * If the dynamic array doesn't have enough space it will reallocate
+ * to ensure it can fit it in.
+ */
+void darr_append_byte(darr_t *darr, byte b);
+
+/** Append an array of n bytes (b) to the dynamic array (darr).
+ * If the dynamic array doesn't have enough space to fit all n bytes
+ * it will reallocate to ensure it can fit it in.
+ */
+void darr_append_bytes(darr_t *darr, byte *b, size_t n);
+
+/** Safely get the nth byte of the dynamic array (darr)
+ * If the dynamic array has less than n bytes used, it will return 0
+ * as a default value.
+ */
+byte darr_at(darr_t *darr, size_t n);
+/** Write the dynamic array (darr) to the file pointer (fp) as a
+ * buffer of bytes.
+ * Assumes fp is a valid file pointer and in write mode.
+ */
void darr_write_file(darr_t *, FILE *);
+
+/** Read a file pointer (fp) in its entirety, converting the bytes
+ * into a tightly fitted dynamic array.
+ * Say the file pointer is a file of n bytes. Then the dynamic array
+ * returned will have available set to n and used set to 0.
+ */
darr_t darr_read_file(FILE *);
#endif