Files
RockOS/kernel/lib/print.h

7 lines
110 B
C
Raw Normal View History

#ifndef KLIBPRINT_H
#define KLIBPRINT_H
void kputc(const char c);
2026-06-14 00:34:11 -05:00
void kprintf(const char* fmt, ...);
#endif