//Given a string of characters, one by one is passed to the LCD void LCDString(char *characters, int length) { int index; for(index=0; index<length; index++){ LCDCharacter(characters[index], 0); } }
void LCDString(char *characters) { while (*characters) { LCDCharacter(*characters++); } }
void LCDString(char *characters) { strrev(characters); while (*characters) { LCDCharacter(*characters++); } }