#ifndef _DRAW_H_ #define _DRAW_H_ void drawcircle(unsigned int *buf, int width, int height, int xc, int yc, int r, int color); void drawline(unsigned int *buf, int width, int height, int x1, int y1, int x2, int y2,int color); #endif