GIT.Harvie.CZ
/
svn
/
Cll1h
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
#3 lvalue forced in object method invocation macro
[svn/Cll1h/.git]
/
demos
/
strings.c
1
#include
"cll1.h"
2
3
program
4
{
5
char
*
ptr
;
6
7
asprintf
(&
ptr
,
"%ld"
,
123456789
);
8
printf
(
"strlen(
\"
%s
\"
)=%d
\n
"
,
ptr
,
strlen
(
ptr
));
9
10
ptr
=
catf
(
"%ld"
,
123456789
);
11
printf
(
"strlen(
\"
%s
\"
)=%d
\n
"
,
ptr
,
strlen
(
ptr
));
12
13
}
This page took
0.318892 seconds
and
4
git commands to generate.