#include "biosdem.h" /* write a string of chars to the LCD */ void _IT_lcd_puts(const char * s) { LCD_RS = 1; // write characters while(*s) _IT_lcd_write(*s++); }