aboutsummaryrefslogtreecommitdiff
path: root/src/bitmap.h
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-08-21 20:16:43 +0100
committerHarry Jeffery <harry@exec64.co.uk>2019-08-21 20:16:43 +0100
commitd2f5deb27816889cdc9b25e868557f0bcd23e163 (patch)
treeb5709f59f5b5d0fe7c2735f01e79ffe5d6df2844 /src/bitmap.h
parentcf7f3127cbde7354f1b592af0d23de4d7cd1123f (diff)
downloadimv-d2f5deb27816889cdc9b25e868557f0bcd23e163.tar.gz
Improve header commenting
Diffstat (limited to 'src/bitmap.h')
-rw-r--r--src/bitmap.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bitmap.h b/src/bitmap.h
index 61ef0ce..c41b8ff 100644
--- a/src/bitmap.h
+++ b/src/bitmap.h
@@ -13,7 +13,10 @@ struct imv_bitmap {
unsigned char *data;
};
+/* Copy an imv_bitmap */
struct imv_bitmap *imv_bitmap_clone(struct imv_bitmap *bmp);
+
+/* Clean up a bitmap */
void imv_bitmap_free(struct imv_bitmap *bmp);
#endif