Files
margen/src/bmp.h
T
klemek 0172286d9a feat: change orientation (#7)
* feat: change orientation (wip)

* wip

* working rotation

* small fix in help
2025-06-05 12:03:15 +02:00

10 lines
240 B
C

#include "types.h"
#ifndef BMP_H
#define BMP_H
void bmp_generate(unsigned short width, unsigned short height,
unsigned char color_depth, bool descending, char *file_path,
line_fn generate_line);
#endif