Commit 519b1997 authored by Vasilev Artem Evgenyevich's avatar Vasilev Artem Evgenyevich :8ball:
Browse files

Upload New File

parent 8ba0213d
No related merge requests found
Pipeline #97041 canceled with stages
#ifndef BMP_READER_H
#define BMP_READER_H
#include "common.h"
enum read_status {
READ_OK = 0,
READ_INVALID_SIGNATURE,
READ_INVALID_BITS,
READ_INVALID_HEADER,
MEMORY_ALLOCATION_ERROR,
READ_BIT_COUNT_ERROR
};
enum read_status from_bmp(FILE *file, struct image* img);
#endif
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment