]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/isalpha.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / isalpha.s
index 093b3d006cbb6c104c253f87e2449e9c1d3b1068..2ab9bf269396b5625963a694fa5794ea37acb836 100644 (file)
@@ -4,18 +4,18 @@
 ; int isalpha (int c);
 ;
 
-       .export         _isalpha
-       .include        "ctype.inc"
+        .export         _isalpha
+        .include        "ctype.inc"
 
 _isalpha:
-       cpx     #$00            ; Char range ok?
-       bne     @L1             ; Jump if no
-       tay
-       lda     __ctype,y       ; Get character classification
-       and     #CT_ALPHA       ; Mask character bits
-       rts
+        cpx     #$00            ; Char range ok?
+        bne     @L1             ; Jump if no
+        tay
+        lda     __ctype,y       ; Get character classification
+        and     #CT_ALPHA       ; Mask character bits
+        rts
 
-@L1:   lda     #$00            ; Return false
-       tax
-       rts
+@L1:    lda     #$00            ; Return false
+        tax
+        rts