mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:25:55 +00:00
Delete all Trailing spaces in code.
svn path=/trunk/; revision=29689
This commit is contained in:
parent
622c29bffb
commit
a7fddf9c07
293 changed files with 12346 additions and 12346 deletions
|
@ -23,7 +23,7 @@ text_getc (FILE * file)
|
|||
/* A comment/newline sequence is returned as a newline */
|
||||
{
|
||||
register int ch;
|
||||
|
||||
|
||||
ch = getc(file);
|
||||
if (ch == '#') {
|
||||
do {
|
||||
|
@ -41,7 +41,7 @@ read_text_integer (FILE * file, long * result, int * termchar)
|
|||
{
|
||||
register int ch;
|
||||
register long val;
|
||||
|
||||
|
||||
/* Skip any leading whitespace, detect EOF */
|
||||
do {
|
||||
ch = text_getc(file);
|
||||
|
@ -50,7 +50,7 @@ read_text_integer (FILE * file, long * result, int * termchar)
|
|||
return FALSE;
|
||||
}
|
||||
} while (isspace(ch));
|
||||
|
||||
|
||||
if (! isdigit(ch)) {
|
||||
*termchar = ch;
|
||||
return FALSE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue