repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve the process for GNU tools
[minix3.git]
/
external
/
bsd
/
mdocml
/
dist
/
test-strcasestr.c
blob
2ffb420b6bffb6c0fb97ea13064e43d27ad0f306
1
#include <string.h>
2
3
int
4
main
(
void
)
5
{
6
const char
*
big
=
"BigString"
;
7
char
*
cp
=
strcasestr
(
big
,
"Gst"
);
8
return
(
big
+
2
!=
cp
);
9
}