toaruos/base/usr/include/toaru/drawstring.h

12 lines
211 B
C
Raw Normal View History

2018-03-01 09:10:57 +03:00
#pragma once
2018-10-12 05:15:40 +03:00
#include <_cheader.h>
2018-03-19 05:38:11 +03:00
#include <toaru/graphics.h>
2018-03-01 09:10:57 +03:00
2018-10-12 05:15:40 +03:00
_Begin_C_Header
2018-03-01 09:10:57 +03:00
void draw_string(gfx_context_t * ctx, int x, int y, uint32_t _fg, char * str);
int draw_string_width(char * str);
2018-10-12 05:15:40 +03:00
_End_C_Header