Changeset 7258c6a in buchla-68k for lib700/tolower.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
  • lib700/tolower.c

    r0292fbb r7258c6a  
    1414*/
    1515
    16 int tolower(int c)
     16int16_t tolower(int16_t c)
    1717{
    18         int     x;
     18        int16_t x;
    1919
    2020        if (isascii(c)) {
Note: See TracChangeset for help on using the changeset viewer.