Changeset 1433ecda in mainline for uspace/lib/c/generic/str.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/str.c

    r47b2d7e3 r1433ecda  
    4949/** Check the condition if wchar_t is signed */
    5050#ifdef __WCHAR_UNSIGNED__
    51         #define WCHAR_SIGNED_CHECK(cond)  (true)
     51#define WCHAR_SIGNED_CHECK(cond)  (true)
    5252#else
    53         #define WCHAR_SIGNED_CHECK(cond)  (cond)
     53#define WCHAR_SIGNED_CHECK(cond)  (cond)
    5454#endif
    5555
     
    164164                        /* 0xxxxxxx (Plain ASCII) */
    165165                        return b & 0x7f;
    166                 }
    167                 else if ((b & 0xe0) == 0xc0 || (b & 0xf0) == 0xe0 ||
     166                } else if ((b & 0xe0) == 0xc0 || (b & 0xf0) == 0xe0 ||
    168167                    (b & 0xf8) == 0xf0) {
    169168                        /* Start byte */
    170169                        size_t start_offset = *offset;
    171170                        return str_decode(str, &start_offset, size);
    172                 }
    173                 else if ((b & 0xc0) != 0x80) {
     171                } else if ((b & 0xc0) != 0x80) {
    174172                        /* Not a continuation byte */
    175173                        return U_SPECIAL;
     
    936934                                ch += (src[idx + 1] & 0x03FF);
    937935                                idx += 2;
    938                         }
    939                         else
     936                        } else
    940937                                break;
    941938                } else {
     
    983980                        idx++;
    984981                } else {
    985                          dest[idx] = c;
     982                        dest[idx] = c;
    986983                }
    987984
     
    11101107        size_t len = str_length(str);
    11111108
    1112         wchar_t *wstr = calloc(len+1, sizeof(wchar_t));
     1109        wchar_t *wstr = calloc(len + 1, sizeof(wchar_t));
    11131110        if (wstr == NULL)
    11141111                return NULL;
Note: See TracChangeset for help on using the changeset viewer.