I'm a little confused between a unichar and a char. Can I treat unichar's similar to char's?
For example, can I do this:
-(BOOL)isNewLine:(unichar)c {
if(c == '\n')
return YES;
else
return NO;
}
|
|
I'm a little confused between a unichar and a char. Can I treat unichar's similar to char's? For example, can I do this:
|
||
|
|
|
|
Yes, unichar is internally |
||
|
|
|
|
Be careful checking for newline that you know the format of your line endings, as Unix (and modern Mac) use \n, but Windows uses \r\n and classic Mac uses \r. |
||
|