Changeset 523fad8 in mainline for libc/generic/io/print.c
- Timestamp:
- 2006-04-16T13:18:43Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- da32cea
- Parents:
- 9426c1a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/io/print.c
r9426c1a3 r523fad8 69 69 * @return number of printed characters or EOF 70 70 */ 71 72 71 static int print_char(char c, int width, uint64_t flags) 73 72 { 74 73 int counter = 0; 75 char space = ' ';76 74 77 75 if (!(flags & __PRINTF_FLAG_LEFTALIGNED)) { … … 257 255 putchar('b'); 258 256 } 259 written == 2;257 written += 2; 260 258 break; 261 259 case 8:
Note:
See TracChangeset
for help on using the changeset viewer.