- whitespace cleanup from Tito.
This commit is contained in:
parent
4217bab02e
commit
0817313255
@ -5,19 +5,7 @@
|
||||
* Copyright (c) 1980, 1987
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
||||
*
|
||||
* Original copyright notice is retained at the end of this file.
|
||||
*
|
||||
@ -31,8 +19,6 @@
|
||||
#include <ctype.h>
|
||||
#include "busybox.h"
|
||||
|
||||
#define ISSTR(ch) (isprint(ch) || ch == '\t')
|
||||
|
||||
#define WHOLE_FILE 1
|
||||
#define PRINT_NAME 2
|
||||
#define PRINT_OFFSET 4
|
||||
@ -70,7 +56,7 @@ PIPE:
|
||||
count = 0;
|
||||
do {
|
||||
c = fgetc(file);
|
||||
if (ISSTR(c)) {
|
||||
if (isprint(c) || c == '\t') {
|
||||
if (i <= n) {
|
||||
string[i] = c;
|
||||
} else {
|
||||
@ -100,7 +86,8 @@ PIPE:
|
||||
}
|
||||
} while (--argc > 0);
|
||||
|
||||
if (ENABLE_FEATURE_CLEAN_UP) free(string);
|
||||
if (ENABLE_FEATURE_CLEAN_UP)
|
||||
free(string);
|
||||
|
||||
bb_fflush_stdout_and_exit(status);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user