rulimine/stage23/lib/bmp.h

11 lines
187 B
C
Raw Normal View History

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