Changeset 1433ecda in mainline for uspace/lib/fmtutil/fmtutil.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/fmtutil/fmtutil.c

    r47b2d7e3 r1433ecda  
    101101                                putchar(' ');
    102102                }
    103         }
    104         else if (mode == ALIGN_RIGHT) {
     103        } else if (mode == ALIGN_RIGHT) {
    105104                for (i = 0; i < width; i++) {
    106105                        if (i < width - len)
    107106                                putchar(' ');
    108107                        else
    109                                 putchar(wstr[i- (width - len)]);
    110                 }
    111         }
    112         else if (mode == ALIGN_CENTER) {
     108                                putchar(wstr[i - (width - len)]);
     109                }
     110        } else if (mode == ALIGN_CENTER) {
    113111                size_t padding = (width - len) / 2;
    114112                for (i = 0; i < width; i++) {
     
    116114                                putchar(' ');
    117115                        else
    118                                 putchar(wstr[i-padding]);
    119                 }
    120         }
    121         else if (mode == ALIGN_JUSTIFY) {
     116                                putchar(wstr[i - padding]);
     117                }
     118        } else if (mode == ALIGN_JUSTIFY) {
    122119                size_t words = 0;
    123120                size_t word_chars = 0;
     
    128125                        }
    129126                        space = wstr[i] == ' ';
    130                         if (!space) word_chars++;
     127                        if (!space)
     128                                word_chars++;
    131129                }
    132130                size_t done_words = 0;
     
    134132                if (words == 0)
    135133                        goto skip_words;
    136                 size_t excess_spaces = width - word_chars - (words-1);
     134                size_t excess_spaces = width - word_chars - (words - 1);
    137135                space = true;
    138136                i = 0;
     
    140138                while (i < len) {
    141139                        /* Find a word */
    142                         while (i < len && wstr[i] == ' ') i++;
    143                         if (i == len) break;
     140                        while (i < len && wstr[i] == ' ')
     141                                i++;
     142                        if (i == len)
     143                                break;
    144144                        if (done_words) {
    145145                                size_t spaces = 1 + (((done_words *
     
    158158                        done_words++;
    159159                }
    160 skip_words:
     160        skip_words:
    161161                while (done_chars < width) {
    162162                        putchar(' ');
    163163                        done_chars++;
    164164                }
    165         }
    166         else {
     165        } else {
    167166                return EINVAL;
    168167        }
Note: See TracChangeset for help on using the changeset viewer.