proper headers

This commit is contained in:
2025-06-03 20:07:24 +02:00
parent 1ddb2fdea0
commit f12754da21
10 changed files with 60 additions and 5 deletions
+7 -1
View File
@@ -1,4 +1,10 @@
#ifndef BMP_H
#define BMP_H
typedef void line_fn(unsigned long y, char *data_buffer);
void bmp_generate(unsigned long width, unsigned long height,
unsigned int color_depth, char *file_path, line_fn);
unsigned int color_depth, char *file_path,
line_fn generate_line);
#endif