Files
RockOS/kernel/lib/print.c

11 lines
171 B
C

#include "print.h"
#include "stream.h"
extern print_stream_t* kout;
void kprint(const char *str) {
while (*str) {
kout->putchar(*str);
str++;
}
}