K 10 svn:author V 8 jmallett K 8 svn:date V 27 2002-04-29T16:45:16.000000Z K 7 svn:log V 651 MFC printf(1) changes. Notably revision 1.20 of printf.c and revision 1.21 of printf.1: - printf shouldn't bail out if a conversion fails, it should just keep processing them. - \c escape to immediately stop output (similar to echo's \c) - \0NNN should be allowed for octal character escapes (instead of just \NNN) - %b conversion, which is like %s but interprets \n \t etc. inside the string is missing. And revision 1.21 of printf.c: Handle numbers larger than QUAD_MAX for unsigned conversions correctly. Exit with nonzero status if a conversion failed. Play nice if used as a shell builtin (currently disabled). PR: 35616 (some of it) END