git.ckatri.com
/
mandoc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initialize the local variable "act" in print_mdoc_node().
[mandoc.git]
/
test-strcasestr.c
1
#include <string.h>
2
3
int
4
main
(
void
)
5
{
6
const char
*
big
=
"BigString"
;
7
char
*
cp
=
strcasestr
(
big
,
"Gst"
);
8
return
cp
!=
big
+
2
;
9
}