blob: 7bcf7b41d69a1bd651827254a10cf15417d642e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
int main(int argc, char argv[]) {
/* multiline
* foo */
// c comment
fprintf(stderr, "this is a \"string %s %i", 0x5656, 6786);
c = 'c';
c = '\\';
c = '\000';
FOO_BAR(blafasel);
}
|