Revision: | 2.3 |
Committed: | Tue Feb 25 02:47:22 2003 UTC (22 years, 2 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R5, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3, HEAD |
Changes since 2.2: | +1 -56 lines |
Log Message: | Replaced inline copyright notice with #include "copyright.h" |
# | User | Rev | Content |
---|---|---|---|
1 | greg | 2.1 | #ifndef lint |
2 | greg | 2.2 | static const char RCSid[] = "$Id$"; |
3 | greg | 2.1 | #endif |
4 | /* | ||
5 | * String comparison routine optimized for use with savestr.c | ||
6 | greg | 2.2 | */ |
7 | |||
8 | greg | 2.3 | #include "copyright.h" |
9 | greg | 2.1 | |
10 | |||
11 | int | ||
12 | strcmp(s1, s2) /* check for s1==s2 */ | ||
13 | register char *s1, *s2; | ||
14 | { | ||
15 | if (s1 == s2) | ||
16 | return(0); | ||
17 | |||
18 | while (*s1 == *s2++) | ||
19 | if (!*s1++) | ||
20 | return(0); | ||
21 | |||
22 | return(*s1 - *--s2); | ||
23 | } |