rulimine/stage23/lib/bmp.h
2021-10-21 02:37:05 +02:00

11 lines
188 B
C

#ifndef __LIB__BMP_H__
#define __LIB__BMP_H__
#include <stdint.h>
#include <fs/file.h>
#include <lib/image.h>
bool bmp_open_image(struct image *image, struct file_handle *file);
#endif