repo.or.cz
/
hdt-cyring.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hdt: 0.5.2-pre3 release
[hdt-cyring.git]
/
core
/
strcasecmp.c
blob
2f7480d431e1e9704101dcbe6d616aa34ea31690
1
/*
2
* strcasecmp.c
3
*/
4
5
#include <string.h>
6
#include <ctype.h>
7
8
int
strcasecmp
(
const char
*
s1
,
const char
*
s2
)
9
{
10
return
strncasecmp
(
s1
,
s2
, -
1
);
11
}