Search:
Login
Preferences
Help/Guide
About Trac
Forgot your password?
Wiki
Timeline
Roadmap
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 48
and
Version 49
of
ResumedC
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Oct 19, 2009, 8:54:03 AM (
15 years
ago)
Author:
Thanatermesis
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
ResumedC
v48
v49
20
20
if (strcmp(string1, string2))
21
21
/* Easy-to-understand way: */
22
if ((strcmp(string1, string2)
=
= 0)
22
if ((strcmp(string1, string2)
!
= 0)
23
23
24
24
/* Wrong way: */