repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
string
/
bug-strpbrk1.c
blob
28238b0f50a588ed5719f0fd802a87466eed3871
1
/* Test case by Joseph S. Myers <jsm28@cam.ac.uk>. */
2
#undef __USE_STRING_INLINES
3
#define __USE_STRING_INLINES
4
#include <string.h>
5
#include <stdlib.h>
6
#include <stdio.h>
7
8
int
9
main
(
void
)
10
{
11
const char
*
a
=
"abc"
;
12
const char
*
b
=
a
;
13
14
strpbrk
(
b
++,
""
);
15
if
(
b
!=
a
+
1
)
16
return
1
;
17
18
return
0
;
19
}