Files
TDT4200/exercise0/bitmap.h
2025-08-26 18:26:11 +02:00

10 lines
172 B
C

#ifndef BITMAP_H
#define BITMAP_H
typedef unsigned char uchar;
void savebmp(char *name, uchar *buffer, int x, int y);
void readbmp(char *filename, uchar *array);
#endif