blob: 0f9b45adf8454c176e1636d286609310df52fa27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* bitmap.h: definition for a bitmap type. No packing is done by
default; each pixel is represented by an entire byte. Among other
things, this means the type can be used for both grayscale and binary
images. */
#ifndef BITMAP_H
#define BITMAP_H
#include "autotrace.h"
#include "input.h"
#include <stdio.h>
#endif /* not BITMAP_H */
|