File: testmod.pm

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 (18 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;

##############################################################################
# set keyword char to #TEST - allows normal C pre-processor stuff through
##############################################################################
my $keychar = "#TEST";
Filepp::SetKeywordchar($keychar);

##############################################################################
# set line continution char to something other than "\"
##############################################################################
Filepp::SetContchar("TESTEND");

return 1;

##############################################################################
# End of file
##############################################################################