summaryrefslogtreecommitdiff
path: root/kernel/kmain.c
AgeCommit message (Collapse)Author
2018-06-18Added interpretation of the '%' conversion specifier which acts as anJake Mannens
escape sequence printing a literal '%'. Added the 'X' conversion specifier which differs from the 'x' specifier in that resulting letters are converted to uppercase. Added interpretation of the '#' alt flag which now causes the '0x' prefix to be added to every hex conversion.
2018-06-17Added zero padding and field width interpretation to vsprintf.Jake Mannens
2018-06-17Added basic implmementation of %x to vsprintf.Jake Mannens
2018-06-17Fixed a bug where if multiple %s parameters were passed to vsprintf,Jake Mannens
trailing 's' characters were appended to subsequent strings.
2018-06-17Added %s to vsprintfJake Mannens
2018-06-16Initial commitJake Mannens