summaryrefslogtreecommitdiffstats
path: root/drivers/video/console/vgacon.h
blob: ac2e9e35e085865af9c0a80a380a0b1c85675d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DRIVERS_VIDEO_CONSOLE_VGA_H
#define DRIVERS_VIDEO_CONSOLE_VGA_H

#include <stddef.h>
#include <stdint.h>

void vgacon_init(void);
void vgacon_setattr(uint8_t attr);
void vgacon_scroll(size_t lines);
void vgacon_cls(void);
void vgacon_putchar(char c);
void vgacon_write(const char *str, size_t size);
void vgacon_print(const char *str);

#endif /* DRIVERS_VIDEO_CONSOLE_VGA_H */