On Fri Jun 21 09:57:02 2024 +0000, Rémi Bernon wrote:
Does we need to support unicode? What about:
if (status == noErr && len == 1 && buffer[0] >= 'a' && buffer[0] <= 'z') buffer[0] += 'A' - 'a';
The problem here is that this also needs to support `Ä`,`Ü` etc on some layouts, so unicode is needed there I think.