File: test.in

package info (click to toggle)
filepp 1.7.1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,120 kB
  • ctags: 240
  • sloc: perl: 2,597; makefile: 489; sh: 174; ansic: 15
file content (21 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#define macro1 test
#defplus macro1 another test
Next line should be "test another test":
macro1

#define macro2 this that
#defplus macro2 this
#defplus macro2 this
Next line should be "this that this this"
macro2

#defplus macro3 one good macro
#defplus macro3 deserves another
Next line should be "one good macro deserves another"
macro3

#defplus macro4 this won't appear
#undef macro4
#defplus macro4 a new day
Next line should be "a new day"
macro4