aboutsummaryrefslogtreecommitdiff
path: root/include/graphics/drawer.h
blob: 67abca049f82fd8e4b1b6b3e10773b5d4e041f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef GRAPHICS_DRAWER_H
#define GRAPHICS_DRAWER_H

struct Drawer {
	unsigned int x;
	unsigned int y;
};

void write_cchar(struct Drawer* d, char s, unsigned int c);
void write_char(struct Drawer* d, char s);

void write_cstring(struct Drawer* d, char* s, unsigned int c);
void write_string(struct Drawer* d, char* s);

void write_chex32(struct Drawer* d, unsigned long val, unsigned int c);
void write_hex32(struct Drawer* d, unsigned long val);

void write_c10(struct Drawer* d, unsigned long val, unsigned int c);
void write_10(struct Drawer* d, unsigned long val);

void set_drawer(struct Drawer* d, unsigned int x, unsigned int y);

#endif