13 lines
210 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
int load_bmp_rgb(const char* path, unsigned char** pixels, int* width, int* height);
void free_bmp_rgb(unsigned char* pixels);
#ifdef __cplusplus
}
#endif