]> git.sur5r.net Git - cc65/blobdiff - test/ref/incr.c
remote TABs in doc/ and test/
[cc65] / test / ref / incr.c
index adce0e1c0be8d6973daaeda8efc2b893aaf5596a..5e2a78764d533683f25bb6540eb9c0df4724a242 100644 (file)
@@ -13,39 +13,39 @@ int main(void)
 }
 
 memchar() {
-       char x, *p;
+        char x, *p;
 
-       &x, &p;
-       x = *p++;
-       x = *++p;
-       x = *p--;
-       x = *--p;
+        &x, &p;
+        x = *p++;
+        x = *++p;
+        x = *p--;
+        x = *--p;
 }
 
 memint() {
-       int x, *p;
+        int x, *p;
 
-       &x, &p;
-       x = *p++;
-       x = *++p;
-       x = *p--;
-       x = *--p;
+        &x, &p;
+        x = *p++;
+        x = *++p;
+        x = *p--;
+        x = *--p;
 }
 
 regchar() {
-       register char x, *p;
+        register char x, *p;
 
-       x = *p++;
-       x = *++p;
-       x = *p--;
-       x = *--p;
+        x = *p++;
+        x = *++p;
+        x = *p--;
+        x = *--p;
 }
 
 regint() {
-       register int x, *p;
+        register int x, *p;
 
-       x = *p++;
-       x = *++p;
-       x = *p--;
-       x = *--p;
+        x = *p++;
+        x = *++p;
+        x = *p--;
+        x = *--p;
 }