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 (57 lines) | stat: -rw-r--r-- 1,086 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#bigfunc test1() multi
line

macro
#endbigfunc

First macro:
test1()
#######################################################################

#bigfunc test2(arg1, arg2)
multi line macro
with args : <arg1> and <arg2>
------
#endbigfunc

Second macro:
test2(this, that)
#######################################################################

#bigfunc test3()
  
        lots
          of      
           spaces   
        
#endbigfunc

#define spaces don't you want to know about the wasted spaces

Third macro:
test3()
#######################################################################

#bigfunc test4()            
Macro with conditional bits in:
#define SHOWME
#ifdef SHOWME
This should be in test macro
#else
This should not be in test macro
#endif
#endbigfunc

Fourth macro:
test4()
#######################################################################

#bigfunc test5()            
#pragma filepp SetKeywordchar ##
##include "README"
##pragma filepp SetKeywordchar #
#endbigfunc

Fifth macro:
test5()
#######################################################################