5 lines
225 B
C
5 lines
225 B
C
struct bitmap;
|
|
struct bitmap * bitmap_new(int width, int height, int value);
|
|
int bitmap_set(struct bitmap *bmp, int x, int y, int value);
|
|
int bitmap_get(struct bitmap *bmp, int x, int y);
|
|
void bitmap_free(struct bitmap *bmp); |