repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* add p cc
[mascara-docs.git]
/
compilers
/
pcc
/
pcc-1.0.0
/
cc
/
cpp
/
tests
/
test1
blob
79a3c5dc5d4d449df1405400d215da9ec4530f9c
1
#define hash_hash # ## #
2
#define mkstr(a) # a
3
#define in_between(a) mkstr(a)
4
#define join(c, d) in_between(c hash_hash d)
5
char p[] = join(x, y); // equivalent to
6
// char p[] = "x ## y";