File: testfile

package info (click to toggle)
cpphs 0.7-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 360 kB
  • ctags: 18
  • sloc: haskell: 939; makefile: 79; sh: 36; ansic: 11
file content (34 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
1 top of file
#define X 0
3
#ifdef X
5 X is defined
#endif
7
#if X
9 X is non-zero
#endif
11
#if error
#error "error message goes here"
#endif
15
#if warning
#warning "warning message goes here"
#endif
19
#if include
#include "inclusion"
#else
23 no inclusion, this is an else clause
#endif
25
#if noelif
27 no elif
#elif elif
29 this is an elif
#else
31 third branch of elif
#endif
33
34 end of file