]> err.no Git - util-linux/commitdiff
look: remove tailing white-spaces
authorKarel Zak <kzak@redhat.com>
Wed, 7 Mar 2007 08:53:56 +0000 (09:53 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 7 Mar 2007 08:53:56 +0000 (09:53 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/look.c

index 7ffd8a3e2db0a066a6641c3f11fc176f5da08c44..5c7e30c71f4e63f0f14562e29d05492179f7c4d1 100644 (file)
@@ -40,7 +40,7 @@
 
 /*
  * look -- find lines in a sorted list.
- * 
+ *
  * The man page said that TABs and SPACEs participate in -d comparisons.
  * In fact, they were ignored.  This implements historic practice, not
  * the manual page.
@@ -92,7 +92,7 @@ main(int argc, char *argv[])
        setlocale(LC_ALL, "");
        bindtextdomain(PACKAGE, LOCALEDIR);
        textdomain(PACKAGE);
-       
+
        setlocale(LC_ALL, "");
 
        file = _PATH_WORDS;
@@ -193,36 +193,36 @@ look(char *front, char *back)
 
 /*
  * Binary search for "string" in memory between "front" and "back".
- * 
+ *
  * This routine is expected to return a pointer to the start of a line at
  * *or before* the first word matching "string".  Relaxing the constraint
  * this way simplifies the algorithm.
- * 
+ *
  * Invariants:
- *     front points to the beginning of a line at or before the first 
+ *     front points to the beginning of a line at or before the first
  *     matching string.
- * 
- *     back points to the beginning of a line at or after the first 
+ *
+ *     back points to the beginning of a line at or after the first
  *     matching line.
- * 
+ *
  * Advancing the Invariants:
- * 
+ *
  *     p = first newline after halfway point from front to back.
- * 
- *     If the string at "p" is not greater than the string to match, 
+ *
+ *     If the string at "p" is not greater than the string to match,
  *     p is the new front.  Otherwise it is the new back.
- * 
+ *
  * Termination:
- * 
- *     The definition of the routine allows it return at any point, 
+ *
+ *     The definition of the routine allows it return at any point,
  *     since front is always at or before the line to print.
- * 
- *     In fact, it returns when the chosen "p" equals "back".  This 
- *     implies that there exists a string is least half as long as 
- *     (back - front), which in turn implies that a linear search will 
+ *
+ *     In fact, it returns when the chosen "p" equals "back".  This
+ *     implies that there exists a string is least half as long as
+ *     (back - front), which in turn implies that a linear search will
  *     be no more expensive than the cost of simply printing a string or two.
- * 
- *     Trying to continue with binary search at this point would be 
+ *
+ *     Trying to continue with binary search at this point would be
  *     more trouble than it's worth.
  */
 #define        SKIP_PAST_NEWLINE(p, back) \
@@ -254,12 +254,12 @@ binary_search(char *front, char *back)
 /*
  * Find the first line that starts with string, linearly searching from front
  * to back.
- * 
+ *
  * Return NULL for no such line.
- * 
+ *
  * This routine assumes:
- * 
- *     o front points at the first character in a line. 
+ *
+ *     o front points at the first character in a line.
  *     o front is before or at the first line to be printed.
  */
 char *
@@ -284,7 +284,7 @@ linear_search(char *front, char *back)
 /*
  * Print as many lines as match string, starting at front.
  */
-void 
+void
 print_from(char *front, char *back)
 {
        int eol;
@@ -306,13 +306,13 @@ print_from(char *front, char *back)
 /*
  * Return LESS, GREATER, or EQUAL depending on how  string  compares with
  * string2 (s1 ??? s2).
- * 
- *     o Matches up to len(s1) are EQUAL. 
+ *
+ *     o Matches up to len(s1) are EQUAL.
  *     o Matches up to len(s2) are GREATER.
- * 
+ *
  * Compare understands about the -f and -d flags, and treats comparisons
  * appropriately.
- * 
+ *
  * The string "string" is null terminated.  The string "s2" is '\n' terminated
  * (or "s2end" terminated).
  *