quark/src/kernel/lib/stdio.h
Arnau Camprubí be55b8121c Floppy disk controller, new keyboard and PIT driver interface, many things
- Implemented basic FDC capable of reading floppy disc sectors
 - Now PIT timer can be used, as it counts the ticks
 - Now the keyboard is buffered, instead of being accessed only during the interrupt itself
 - HAL for sleep()
 - gets()
 - atoi()
 - Now shell is not called by the IRQ, but it's a procedure that reads the key buffer
2022-08-15 01:34:15 +02:00

14 líneas
304 B
C

#pragma once
#include <stdarg.h>
void puts(char *str);
void putc(char c);
void serial_putc(char c);
void vprintf(char *fmt, va_list args);
void printf(char *fmt, ...);
void serial_vprintf(char *fmt, va_list args);
void serial_printf(char *fmt, ...);
void gets(char *str, int max);
void clear_screen();