Changeset 7258c6a in buchla-68k for libsm/strfill.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libsm/strfill.c

    r0292fbb r7258c6a  
    1313*/
    1414
    15 char *strfill(char *s, char c, unsigned n)
     15int8_t *strfill(int8_t *s, int8_t c, uint16_t n)
    1616{
    17         register unsigned i;
    18         char *p;
     17        register uint16_t i;
     18        int8_t *p;
    1919
    2020        p = s;
Note: See TracChangeset for help on using the changeset viewer.