#include #define ROWS 20 #define scroll_window wscrl main() { int i; WINDOW * w; initscr(); cbreak(); noecho(); w = newwin (ROWS, 35, 2, 25); scrollok(w, TRUE); wsetscrreg(w, 0, ROWS-1); #ifdef LELE mvaddstr (0, 0, "With my function"); #else mvaddstr (0, 0, "With the original wscrl"); #endif refresh(); for (i=0; i