//fname: ln.c //test: int Line(int X1,int Y1,int X2,int Y2,int Color); //for: test iView LCD draw Line #include #include int main() { InitLib(); InitLCD(); if(InitLCD()>0)//initializing LCD Print("\nSomething wrong"); Line(1,1, 128, 64, 1); Getch(); CloseLCD(); return 0; }