diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 01:28:00 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 01:28:00 +0000 |
commit | 03e88d8ac46156ac28d3ad14cd5025851cb15975 (patch) | |
tree | 3475fe7f783e96106c803fca0c28620dd27e9f2f /missing/strcasecmp.c | |
parent | cfeb22c3016f896ede986a9b80e8245b80c06fe4 (diff) | |
download | ruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.tar.gz ruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.tar.xz ruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.zip |
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/strcasecmp.c')
-rw-r--r-- | missing/strcasecmp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/missing/strcasecmp.c b/missing/strcasecmp.c index fddb8385b..1ce20704c 100644 --- a/missing/strcasecmp.c +++ b/missing/strcasecmp.c @@ -3,8 +3,7 @@ #include <ctype.h> int -strcasecmp(p1, p2) - char *p1, *p2; +strcasecmp(const char *p1, const char *p2) { while (*p1 && *p2) { if (toupper(*p1) != toupper(*p2)) |