unichar c = 'c';
if(c is lowercase) make it uppercase;
or
make c uppercase regardless of current case.
How do I do that ?
I will look at those but to clear things up:
typedef unsigned short unichar;
It is returned from NSString instance method:
-(unichar)characterAtIndexNSUInteger)index
Okay I get your point, this is great feedback.
But what if I limit the conversion to apply only if the characters are within the character range a-z and A-Z. Then I guess it's pretty safe to convert between upper and lower case, or are there other issues that I don't know about?