Diese Funktion ersetzt alle Kleinbuchstaben im übergebenen String in Grossbuchstaben.
void MyUCase(char *txt) { volatile char c; while (( c = *txt )) { if ((c >= 'a') && (c <= 'z')) { c = c - 0x20; *txt = c; } txt++; } }