/* CPE 101 Fall 2008  */
/* Alex Dekhtyar      */
/* Lab 7 image.h test */

/* Test for putPixel()  */

#include "image.h"
int main() {
   char image[HEIGHT][WIDTH][COLORS];
   char black[COLORS], color[COLORS];

   setColor(black, 0,0,0);
   setColor(color, 255,0,0);
   blankImage(image,black);
   putPixel(image, 200,300,color);
   drawImage(image);
   return 0;
}