Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/printf_core.c

    r34b9299 r907d91a  
    14481448                       
    14491449                        switch (uc) {
    1450                         /** @todo Unimplemented qualifiers:
    1451                          *        t ptrdiff_t - ISO C 99
    1452                          */
     1450                        case 't':
     1451                                /* ptrdiff_t */
     1452                                if (sizeof(ptrdiff_t) == sizeof(int32_t))
     1453                                        qualifier = PrintfQualifierInt;
     1454                                else
     1455                                        qualifier = PrintfQualifierLongLong;
     1456                                i = nxt;
     1457                                uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
     1458                                break;
    14531459                        case 'h':
    14541460                                /* Char or short */
Note: See TracChangeset for help on using the changeset viewer.