]> git.sur5r.net Git - cc65/commitdiff
Rearrangements for smaller size of generated code.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 10 Jun 2012 19:02:54 +0000 (19:02 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 10 Jun 2012 19:02:54 +0000 (19:02 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5704 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/fgets.c

index e65fb4bc8e28ef0849a7acf03bc2a17167574b3c..d2e2c72e4bb36082d00c87ec655608f23df9e76d 100644 (file)
@@ -18,8 +18,9 @@
 
 
 
-char* __fastcall__ fgets (char* s, unsigned size, FILE* f)
+char* __fastcall__ fgets (char* s, unsigned size, register FILE* f)
 {
+    register char* p = s;
     unsigned i;
     int c;
 
@@ -34,28 +35,30 @@ char* __fastcall__ fgets (char* s, unsigned size, FILE* f)
 
                /* Get next character */
                if ((c = fgetc (f)) == EOF) {
-                   s[i] = '\0';
                    /* Error or EOF */
                    if ((f->f_flags & _FERROR) != 0 || i == 0) {
                        /* ERROR or EOF on first char */
+                *p = '\0';
                        return 0;
                    } else {
                        /* EOF with data already read */
                 break;
-           }
+           }
                }
 
                /* One char more */
-               s[i++] = c;
-
-       /* Stop at end of line */
-       if (c == '\n') {
-           break;
-       }
+               *p = c;
+        ++p;
+        ++i;
+
+       /* Stop at end of line */
+       if ((char)c == '\n') {
+           break;
+       }
     }
 
     /* Terminate the string */
-    s[i] = '\0';
+    *p = '\0';
 
     /* Done */
     return s;