Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
*dst++ = ' ' means set the character that dst is pointing at to ' ' and then forward the address of dst one character.
flipping the 6th bit (0b100000, or by using the value 0x20) toggles a character between uppercase and lowercase
i.e.
printf("%c\n", 'a' ^ 0x20);
or to just set an uppercase letter to lowercase (also keeps it lowercase) use exclusive or
printf("%c\n", 'D' | 0x20);