Changeset 7258c6a in buchla-68k for libsm/index.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/index.c

    r0292fbb r7258c6a  
    66*/
    77
    8 char *index(char *str, char c)
     8int8_t *index(int8_t *str, int8_t c)
    99{
    1010        while (*str) {
     
    1616        }
    1717
    18         return((char *)0);
     18        return((int8_t *)0);
    1919}
    2020
Note: See TracChangeset for help on using the changeset viewer.