mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
259 B
C
13 lines
259 B
C
#include <ctype.h>
|
|
|
|
#define min(a,b) (((a)>(b))?(b):(a))
|
|
int
|
|
strcasecmp(p1, p2)
|
|
char *p1, *p2;
|
|
{
|
|
for ( ; *p1 && *p2; p1++, p2++) {
|
|
if (toupper(*p1) != toupper(*p2))
|
|
return toupper(*p1) - toupper(*p2);
|
|
}
|
|
return strlen(p1) - strlen(p2);
|
|
}
|