/*
 * include file for ilbm -> sunraster read.c
 *
 */

#include <stdio.h>
#include <fcntl.h>
#include <sys/file.h>
#include <sunras.h>
#include <ilbm.h>

#define ASSIGN(p,red,grn,blu) do { (p).r = (red); (p).g = (grn); (p).b = (blu); } while ( 0 )
#define ALLOCROW( cols ) ((pixel*) malloc( cols * sizeof(pixel) ))

pixel *pixelrow;

FILE *fp;

struct BitMapHeader ilbmheader;
struct RasterHeader sunheader;
