Improvement in LiquidCrystal library

Hello,

I had to add a function in my LiquidCrystal library, called lcd.writes. I am using it for displaying jumbo numbers on my display. This routine is looking like that:

inline void LiquidCrystal::writes(char *mat, int stpos, int lange) {
   for (int c = stpos; c < stpos + lange; c++) {
      send(mat[c], HIGH);
   }
}

Reason: the lcd.print function couldn't print zero characters, but I need them after I created special characters 0 to 7.

Maybe other users like to have this function too as a standard. So, who will implement this?

Bye,
Tom