]> git.sur5r.net Git - cc65/blobdiff - testcode/lib/cursor.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / testcode / lib / cursor.c
index 2d3504cb4c71482af414315a8cdcc002e9e0d560..a608236cb95aafba261ccfc4447eedef1d1da40b 100644 (file)
 
 int main(void)
 {
-       char c;
+        char c;
         NEWLINE;
 
         cursor (1);
-       PRINTF("enter key (cursor on): ");
-       c = cgetc();
+        PRINTF("enter key (cursor on): ");
+        c = cgetc();
         NEWLINE;
 
         cursor (0);
-       PRINTF("enter key (cursor off): ");
-       c = cgetc();
+        PRINTF("enter key (cursor off): ");
+        c = cgetc();
         NEWLINE;
 
-       PRINTF("enter key (cursor on): ");
+        PRINTF("enter key (cursor on): ");
         cursor (1);
-       c = cgetc();
+        c = cgetc();
         NEWLINE;
 
-       PRINTF("enter key (cursor off): ");
+        PRINTF("enter key (cursor off): ");
         cursor (0);
-       c = cgetc();
+        c = cgetc();
         NEWLINE;
 
         PRINTF("hit any key to exit...");
         c = cgetc();
         NEWLINE;
 
-       return(0);
+        return(0);
 }