bigprint.c
446 Bytes
#include "libfb.h"
/*---------------------------------------------------------------------
Display big character string on the screen
---------------------------------------------------------------------*/
void
fbBigPrintStr(u16 color, int curs_x, int curs_y, const char *s, int xsize, int ysize)
{
int i;
for (i = 0 ; *s != NULL ; i ++){
fbBigPutc(color, curs_x + i*xsize, curs_y, *s++, xsize, ysize);
}
}