aboutsummaryrefslogtreecommitdiff
path: root/include/lib/png.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/png.h')
-rw-r--r--include/lib/png.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lib/png.h b/include/lib/png.h
index c21fede..ca1179b 100644
--- a/include/lib/png.h
+++ b/include/lib/png.h
@@ -15,12 +15,12 @@ typedef struct pixel_t {
} Pixel;
typedef struct bitmap_t {
- Pixel* image_buffer;
+ Pixel *image_buffer;
size_t width;
size_t height;
} Bitmap;
// Save bitmap to file
-void save_png(Bitmap* bitmap, char* fname);
+void save_png(Bitmap *bitmap, char *fname);
#endif