| Article: |
Strings in Cocoa: Part I | |
| Subject: | Why not correct the wrong example | |
| Date: | 2001-07-05 00:42:35 | |
| From: | darwinfo | |
|
Hi out there,
|
||
Showing messages 1 through 2 of 2.
-
Why not correct the wrong example
2001-07-06 09:59:28 Derrick Story |
[View]
-
Why not correct the wrong example
2001-07-06 17:06:32 briandds [View]
Um, it's still wrong. strcmp() returns zero if the strings are identical, so the code there should be:
if ( !strcmp(string1, string2) ) {
// do the following code
}
There wasn't much substance to this particular article anyway, so I don't know that it matters.



Thanks to all who helped!
Derrick