Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5269 → Rev 5270

/drivers/ddk/stdio/vsprintf.c
22,11 → 22,12
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/kernel.h>
#include <errno-base.h>
 
#include <linux/ioport.h>
#include <linux/export.h>
 
#include <asm/div64.h>
#include <asm/page.h> /* for PAGE_SIZE */
 
 
static inline u64 div_u64(u64 dividend, u32 divisor)
41,10 → 42,6
return div_s64_rem(dividend, divisor, &remainder);
}
 
struct va_format {
const char *fmt;
va_list *va;
};
 
#define ZERO_SIZE_PTR ((void *)16)
 
62,14 → 59,7
/* Works only for digits and letters, but small and fast */
#define TOLOWER(x) ((x) | 0x20)
 
static inline char *hex_byte_pack(char *buf, u8 byte)
{
*buf++ = hex_asc_hi(byte);
*buf++ = hex_asc_lo(byte);
return buf;
}
 
 
char *skip_spaces(const char *str)
{
while (isspace(*str))
1297,6 → 1287,7
* %piS depending on sa_family of 'struct sockaddr *' print IPv4/IPv6 address
* %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
* case.
* %*pE[achnops] print an escaped buffer
* %*ph[CDN] a variable-length hex string with a separator (supports up to 64
* bytes of the input)
* %n is ignored