]> git.sur5r.net Git - cc65/blobdiff - test/ref/cc65070303.c
remote TABs in doc/ and test/
[cc65] / test / ref / cc65070303.c
index c0404dab882c02c175034dc291650c347eef2076..6dbceeefc1c65fc4744b9095f31acf7c88191c58 100644 (file)
@@ -9,17 +9,17 @@
 
 typedef signed int TypA[3];
 typedef struct TypB {
-       TypA Data[2];
+        TypA Data[2];
 } sTypB;
 sTypB Bs[10];
 TypA * APtr;
 
 int main(int argc, char* argv[])
 {
-       Bs[7].Data[1][2]=11;
-       APtr=&(Bs[7].Data[1]);
-       printf("Hallo Welt! %i = %i \n",Bs[7].Data[1][2], (*APtr)[2] );
-       return 0;
+        Bs[7].Data[1][2]=11;
+        APtr=&(Bs[7].Data[1]);
+        printf("Hallo Welt! %i = %i \n",Bs[7].Data[1][2], (*APtr)[2] );
+        return 0;
 }
 
 /*