libpayload: remove trailing whitespace and run dos2unix
[coreboot.git] / payloads / libpayload / curses / PDCurses-3.4 / pdcurses / scroll.c
index c53e295468a18ec7f9905e86b307205eb5576f8c..bc6c082e37724af630b15277400c80d01cbfe6bf 100644 (file)
@@ -14,15 +14,15 @@ RCSID("$Id: scroll.c,v 1.36 2008/07/13 16:08:18 wmcbrine Exp $")
         int wscrl(WINDOW *win, int n);
 
   Description:
-        scroll() causes the window to scroll up one line.  This involves 
+        scroll() causes the window to scroll up one line.  This involves
         moving the lines in the window data strcture.
-        With a positive n, scrl() and wscrl() scroll the window up n 
-        lines (line i + n becomes i); otherwise they scroll the window 
+
+        With a positive n, scrl() and wscrl() scroll the window up n
+        lines (line i + n becomes i); otherwise they scroll the window
         down n lines.
-        For these functions to work, scrolling must be enabled via 
-        scrollok(). Note also that scrolling is not allowed if the 
+
+        For these functions to work, scrolling must be enabled via
+        scrollok(). Note also that scrolling is not allowed if the
         supplied window is a pad.
 
   Return Value:
@@ -60,7 +60,7 @@ int wscrl(WINDOW *win, int n)
         dir = -1;
     }
 
-    for (l = 0; l < (n * dir); l++) 
+    for (l = 0; l < (n * dir); l++)
     {
         temp = win->_y[start];