]> git.sur5r.net Git - cc65/commitdiff
Just some white space fixes of recently contributed code.
authorOliver Schmidt <ol.sc@web.de>
Thu, 6 Apr 2017 15:53:57 +0000 (17:53 +0200)
committerOliver Schmidt <ol.sc@web.de>
Thu, 6 Apr 2017 15:53:57 +0000 (17:53 +0200)
libsrc/common/strcat.s
libsrc/common/strchr.s
libsrc/common/strcspn.s
libsrc/common/strncat.s
libsrc/common/strspn.s

index 7dce2f78a0ca5ecf6f1d7b8a3c1e79ba75740b00..f9cd94633a36f2f4ac4d0464c1267c656cd0286e 100644 (file)
@@ -21,7 +21,7 @@ _strcat:
 .else
         lda #0
         sta ptr2        ; access from page start, y contains low byte
-.endif        
+.endif
         stx ptr2+1
 
 findEndOfDest:
@@ -33,7 +33,7 @@ findEndOfDest:
         bne findEndOfDest
 
 endOfDestFound:
-        sty ptr2        ; advance pointer to last y position    
+        sty ptr2        ; advance pointer to last y position
         ldy #0          ; reset new y-offset
 
 copyByte:
index 15c743776ebb26258d36548661ba9539b07430cb..206b5160e560391ecbc57d4322778c88a9847a14 100644 (file)
@@ -20,7 +20,7 @@ _strchr:
 .else
         lda #0
         sta ptr1        ; access from page start, y contains low byte
-.endif        
+.endif
 
 Loop:   lda (ptr1),y    ; Get next char
         beq EOS         ; Jump on end of string
@@ -29,7 +29,7 @@ Loop:   lda (ptr1),y    ; Get next char
         iny
         bne Loop
         inc ptr1+1
-        bne Loop        ; Branch always                 
+        bne Loop        ; Branch always
 
 ; End of string. Check if we're searching for the terminating zero
 
index 3f7b42ed1f9bac7148bca7fd4457021b8d024be1..c9122dc9049363cba8305797da4d6102cb4874c6 100644 (file)
@@ -40,7 +40,7 @@ checkNext:
 check:  cpy tmp1            ; compare with length of test character string
         beq endOfTestChars
         cmp (ptr1),y        ; found matching char?
-        bne checkNext           
+        bne checkNext
 
 leave:  txa                 ; restore position of finding
         ldx tmp2            ; and return
@@ -50,5 +50,4 @@ endOfTestChars:
         inx
         bne loadChar
         inc tmp2
-        bne loadChar        ; like bra...        
-
+        bne loadChar        ; like bra...
index e0fa39cc05a7f681168cdbb8a2851d003980fe91..457e39e2558b88aef1885a167f822760eb4a80aa 100644 (file)
@@ -71,5 +71,3 @@ L6: lda #0
 L7: lda ptr3
     ldx ptr3+1
     rts
-
-
index 3316f0dab5796d1b6e8bee49f4d2ef9879755052..079b935ee682ea15f85477a2c3c6b1a519a37933 100644 (file)
@@ -40,15 +40,14 @@ checkNext:
 check:  cpy tmp1            ; compare with length of test character string
         beq leave
         cmp (ptr1),y        ; found matching char?
-        bne checkNext           
+        bne checkNext
 
 foundTestChar:
         inx
         bne loadChar
         inc tmp2
-        bne loadChar        ; like bra...  
+        bne loadChar        ; like bra...
 
 leave:  txa                 ; restore position of finding
         ldx tmp2            ; and return
         rts
-   
\ No newline at end of file