Rev 4180 | Rev 4185 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4180 | Rev 4183 | ||
---|---|---|---|
Line 610... | Line 610... | ||
610 | uint32_t flags = 0; |
610 | uint32_t flags = 0; |
611 | bool end = false; |
611 | bool end = false; |
612 | 612 | ||
613 | do { |
613 | do { |
614 | i++; |
614 | i++; |
615 | switch ((uc = utf8_decode(fmt, &i, UTF8_NO_LIMIT)) != 0) { |
615 | uc = utf8_decode(fmt, &i, UTF8_NO_LIMIT); |
- | 616 | switch (uc) { |
|
616 | case '#': |
617 | case '#': |
617 | flags |= __PRINTF_FLAG_PREFIX; |
618 | flags |= __PRINTF_FLAG_PREFIX; |
618 | break; |
619 | break; |
619 | case '-': |
620 | case '-': |
620 | flags |= __PRINTF_FLAG_LEFTALIGNED; |
621 | flags |= __PRINTF_FLAG_LEFTALIGNED; |