Changeset 7848656 in buchla-68k for libsm/strlen.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/strlen.c

    rbc11fc1 r7848656  
    1111int16_t strlen(int8_t *s)
    1212{
    13         register int16_t n = 0;
     13        register int16_t n = 0;
    1414
    15         while (*s++ != '\0')
    16                ++n;
     15        while (*s++ != '\0')
     16               ++n;
    1717
    18         return (n);
     18        return (n);
    1919}
Note: See TracChangeset for help on using the changeset viewer.