#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

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()
#######################################################################
