]> git.sur5r.net Git - cc65/blobdiff - test/ref/charconst.c
remote TABs in doc/ and test/
[cc65] / test / ref / charconst.c
index 65ebc70be5bd479dbf2a67a5221dca388ef6868c..1a2f5303de8717aef775d5ee37635982054bf8f8 100644 (file)
@@ -14,23 +14,23 @@ void backslash(unsigned char c)
 
     switch (c)
     {
-       case 'b':
-               c = '\b';
-       case 'f':
-               c = '\f';
-       case 'n':
-               c = '\n';
-       case 'r':
-               c = '\r';
-       case 't':
-               c = '\t';
-       case 'v':
+        case 'b':
+                c = '\b';
+        case 'f':
+                c = '\f';
+        case 'n':
+                c = '\n';
+        case 'r':
+                c = '\r';
+        case 't':
+                c = '\t';
+        case 'v':
     #ifndef NO_BACKSLASH_V
         c = '\v';
     #else
         c = 0x0b;
     #endif
-       }
+        }
 
     if(!isprint(c))
     {
@@ -54,7 +54,7 @@ void testbackslash(void)
 
 int main(void)
 {
-       testbackslash();
+        testbackslash();
 
-       return 0;
+        return 0;
 }