Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -14,7 +14,7 @@
/*****************************************************************************/
/* Code */
/* Code */
/*****************************************************************************/
@@ -25,7 +25,7 @@ int __fastcall__ fgetc (register FILE* f)
/* Check if the file is open or if there is an error condition */
if ((f->f_flags & _FOPEN) == 0 || (f->f_flags & (_FERROR | _FEOF)) != 0) {
return EOF;
return EOF;
}
/* If we have a pushed back character, return it */
@@ -38,18 +38,18 @@ int __fastcall__ fgetc (register FILE* f)
switch (read (f->f_fd, &c, 1)) {
case -1:
/* Error */
f->f_flags |= _FERROR;
return EOF;
/* Error */
f->f_flags |= _FERROR;
return EOF;
case 0:
/* EOF */
f->f_flags |= _FEOF;
return EOF;
/* EOF */
f->f_flags |= _FEOF;
return EOF;
default:
/* Char read */
return c;
/* Char read */
return c;
}
}