working types and random

This commit is contained in:
2025-06-04 11:45:02 +02:00
parent 7adfcc7b23
commit 78a97c16dd
8 changed files with 186 additions and 118 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
#ifndef BMP_H
#define BMP_H
void bmp_generate(unsigned long width, unsigned long height,
unsigned int color_depth, char *file_path,
void bmp_generate(unsigned short width, unsigned short height,
unsigned char color_depth, char *file_path,
line_fn generate_line);
#endif