Changeset 7848656 in buchla-68k for libsm/strccpy.c


Ignore:
Timestamp:
07/09/2017 05:04:43 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
9519422
Parents:
bc11fc1
Message:

Spaces to tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libsm/strccpy.c

    rbc11fc1 r7848656  
    1818int8_t *strccpy(int8_t *s1, int8_t *s2, int8_t c)
    1919{
    20         register int8_t *os1;
     20        register int8_t *os1;
    2121        register int8_t x;
    2222
    23         os1 = s1;
     23        os1 = s1;
    2424
    25         while(c != (x = *s1++))
     25        while(c != (x = *s1++))
    2626                *s2++ = x;
    2727
    28         return(os1);
     28        return(os1);
    2929}
Note: See TracChangeset for help on using the changeset viewer.