Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2021-07-20 | io: prefix a 'k' to print functions | Danny Holman | 1 | -3/+3 | |
Add a 'k' prefix to the kernel versions of the printf family. | |||||
2021-01-20 | kernel: iterate over string with index | Danny Holman | 1 | -6/+6 | |
Iterate over a formatted string with an index and strlen instead of using a non-const pointer. The latter method may result in unsafe memory conditions. Signed-off-by: Danny Holman <dholman@gymli.xyz> | |||||
2021-01-17 | kernel: implement a basic printf function | Danny Holman | 1 | -0/+72 | |
Implement a basic printf function using primitives from the TTY library. Signed-off-by: Danny Holman <dholman@gymli.xyz> |