ref: 987b81c9464b1e29c3f7a00320ee5abee014c42a
dir: /src/Bitmap.h/
#pragma once #include <stddef.h> unsigned char* DecodeBitmap(const unsigned char *in_buffer, size_t in_buffer_size, unsigned int *width, unsigned int *height); unsigned char* DecodeBitmapFromFile(const char *path, unsigned int *width, unsigned int *height); void FreeBitmap(unsigned char *buffer);