repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
helper: add get_last_statement_from_expression_stmt() [build fix]
[smatch.git]
/
validation
/
preprocessor
/
stringify.c
blob
7fe965d52a6642350313ffb1daae571dbf0f98c7
1
#define A(x) #x
2
A
(
'a'
)
3
A
(
"a"
)
4
A
(
a
)
5
A
(
\n
)
6
A
(
'
\n
'
)
7
A
(
"
\n
"
)
8
A
(
'"'
)
9
A
(
"a
\n
b"
)
10
A
(
L
"a
\n
b"
)
11
A
(
'\12'
)
12
/*
13
* check-name: Preprocessor #14
14
* check-command: sparse -E $file
15
*
16
* check-output-start
17
18
"'a'"
19
"\"a\""
20
"a"
21
"\n"
22
"'\\n'"
23
"\"\\n\""
24
"'\"'"
25
"\"a\\nb\""
26
"L\"a\\nb\""
27
"'\\12'"
28
* check-output-end
29
*/