Skip to content

Commit 27f1d6b

Browse files
feat: add helpers.h header for function prototype
1 parent 8f04bcc commit 27f1d6b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

helpers.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include "bmp.h"
2+
3+
// Convert image to grayscale
4+
void grayscale(int height, int width, RGBTRIPLE image[height][width]);
5+
6+
// Convert image to sepia
7+
void sepia(int height, int width, RGBTRIPLE image[height][width]);
8+
9+
// Reflect image horizontally
10+
void reflect(int height, int width, RGBTRIPLE image[height][width]);
11+
12+
// Blur image
13+
void blur(int height, int width, RGBTRIPLE image[height][width]);

0 commit comments

Comments
 (0)