repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67821.c
blob
1c9e8b9db3fa670dd641976f7d480d88a8badb5b
1
/* { dg-do compile } */
2
3
int
isdigit
(
int
);
4
5
int
6
foo
(
const char
*
s
)
7
{
8
int
success
=
1
;
9
const char
*
p
=
s
+
2
;
10
if
(!
isdigit
(*
p
))
11
success
=
0
;
12
while
(
isdigit
(*
p
))
13
++
p
;
14
return
success
;
15
}