diff options
author | Greg McGary <greg@mcgary.org> | 1997-04-18 06:34:23 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1997-04-18 06:34:23 +0000 |
commit | ab66bea0c326c2e18866ad37134dc91bf99c514a (patch) | |
tree | 54cc06ba3cd8ca1b5e8f72284438c5a2172ec5b6 /strcasecmp.c | |
parent | 809b665811bde40439d829d6193b278b26ae00ed (diff) | |
download | idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.gz idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.bz2 idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.zip |
imported from mkid-3.0.1r3_0_1
Diffstat (limited to 'strcasecmp.c')
-rw-r--r-- | strcasecmp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/strcasecmp.c b/strcasecmp.c index 8a93ef2..cd038e3 100644 --- a/strcasecmp.c +++ b/strcasecmp.c @@ -58,10 +58,9 @@ static unsigned char charmap[] = { }; int -strcasecmp(s1, s2) - char *s1, *s2; +strcasecmp(char const *s1, char const *s2) { - register unsigned char u1, u2; + unsigned char u1, u2; for (;;) { u1 = (unsigned char) *s1++; |