move function to generator.c

This commit is contained in:
2025-06-03 19:49:20 +02:00
parent 527689f077
commit 3a49fcd771
4 changed files with 20 additions and 14 deletions
+3 -2
View File
@@ -1,3 +1,4 @@
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,
void generate_line(unsigned long y, char *data_buffer));
unsigned int color_depth, char *file_path, line_fn);