aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h
new file mode 100644
index 0000000..5c14fdf
--- /dev/null
+++ b/src/image.h
@@ -0,0 +1,13 @@
+#ifndef IMAGE_H
+#define IMAGE_H
+
+#include <stddef.h>
+#include <stdint.h>
+
+size_t bin_to_rgba(uint8_t**, size_t);
+size_t rgba_to_bin(uint8_t**, size_t);
+
+size_t png_to_rgba(uint8_t**, size_t);
+size_t rgba_to_png(uint8_t**, size_t);
+
+#endif \ No newline at end of file