engine_control/source/firmware/kernel/bitmap.h

21 lines
301 B
C
Raw Normal View History

2016-07-23 05:59:54 +00:00
/*
* 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_ */