]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/isblank.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / isblank.s
index 6da645a92c55a8a18d8c3c64016e4fc13387490d..6babe8853c691fcd85e133d1cbed5c7d4db78994 100644 (file)
@@ -6,18 +6,18 @@
 ; cc65 (and GNU) extension.
 ;
 
-       .export         _isblank
-       .include        "ctype.inc"
+        .export         _isblank
+        .include        "ctype.inc"
 
 _isblank:
-       cpx     #$00            ; Char range ok?
-       bne     @L1             ; Jump if no
-       tay
-       lda     __ctype,y       ; Get character classification
-               and     #CT_SPACE_TAB   ; Mask blank bit
-       rts
+        cpx     #$00            ; Char range ok?
+        bne     @L1             ; Jump if no
+        tay
+        lda     __ctype,y       ; Get character classification
+        and     #CT_SPACE_TAB   ; Mask blank bit
+        rts
 
-@L1:   lda     #$00            ; Return false
-       tax
-       rts
+@L1:    lda     #$00            ; Return false
+        tax
+        rts