Skip to content

Commit 0d07681

Browse files
feat: add helpers.c template for function definitions
1 parent 27f1d6b commit 0d07681

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

helpers.c

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#include "helper.h"
2+
3+
4+
void grayscale(int height, int width, RGBTRIPLE image[height][width]){
5+
6+
// Convert image to grayscale
7+
8+
}
9+
10+
11+
void sepia(int height, int width, RGBTRIPLE image[height][width]){
12+
13+
// Convert image to sepia
14+
15+
}
16+
17+
18+
void reflect(int height, int width, RGBTRIPLE image[height][width]){
19+
20+
// Reflect image horizontally
21+
22+
}
23+
24+
25+
void blur(int height, int width, RGBTRIPLE image[height][width]){
26+
27+
// Blur image
28+
29+
}

0 commit comments

Comments
 (0)