/* * bitmap.h * * Created on: Jan 15, 2016 * Author: tkl */ #ifndef BITMAP_H_ #define BITMAP_H_ struct bitmap { int x_size; int y_size; char *buffer; }; int bitmap_print_text(const struct font *font, struct bitmap *bitmap, int x_pos, int y_pos, char *text); #endif /* BITMAP_H_ */