Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 4244 → Rev 4245

/trunk/uspace/lib/libc/include/string.h
40,6 → 40,7
#include <bool.h>
 
#define U_SPECIAL '?'
#define U_BOM 0xfeff
 
/**< No size limit constant */
#define STR_NO_LIMIT ((size_t) -1)
/trunk/uspace/lib/libc/generic/io/printf_core.c
301,6 → 301,9
if (str == NULL)
return printf_putstr(nullstr, ps);
 
if (*str == U_BOM)
str++;
/* Print leading spaces. */
size_t strw = wstr_length(str);
if (precision == 0)