0172286d9a
* feat: change orientation (wip) * wip * working rotation * small fix in help
10 lines
240 B
C
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 |