10 lines
172 B
C
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
|