mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
24 lines
479 B
ArmAsm
24 lines
479 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 02.06.1998
|
|
;
|
|
; int isblank (int c);
|
|
;
|
|
; cc65 (and GNU) extension.
|
|
;
|
|
|
|
.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
|
|
|
|
@L1: lda #$00 ; Return false
|
|
tax
|
|
rts
|
|
|