repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0025-string.c
blob
9dbb19384a4fbb3858841e2cb63023cb085b1a7e
1
2
int
strlen
(
const char
*);
3
4
int
5
main
(
void
)
6
{
7
const char
*
p
;
8
9
p
=
"hello"
;
10
return
strlen
(
p
) -
5
;
11
}