Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
t /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Devel
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
charnames
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
croak
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
deprecate
[ DIR ]
drwxr-xr-x
2016-10-10 18:14
feature
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
locale
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
strict
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
subs
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
warnings
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
1_compile.t
1.64
KB
-r--r--r--
2014-12-27 11:49
Cname.pm
934
B
-r--r--r--
2014-12-27 11:49
Count.pm
107
B
-r--r--r--
2014-12-27 11:49
Sans_mypragma.pm
72
B
-r--r--r--
2014-12-27 11:49
common.pl
1.37
KB
-r--r--r--
2014-12-27 11:49
commonsense.t
583
B
-r--r--r--
2014-12-27 11:49
compmod.pl
274
B
-r--r--r--
2014-12-27 11:49
croak.t
126
B
-r--r--r--
2014-12-27 11:49
cygwin.t
2.2
KB
-r--r--r--
2014-12-27 11:49
dbmt_common.pl
11.85
KB
-r--r--r--
2014-12-27 11:49
deprecate.t
2.11
KB
-r--r--r--
2014-12-27 11:49
h2ph.h
3.98
KB
-r--r--r--
2014-12-27 11:49
h2ph.pht
3.96
KB
-r--r--r--
2014-12-27 11:49
mypragma.pm
596
B
-r--r--r--
2014-12-27 11:49
mypragma.t
1.32
KB
-r--r--r--
2014-12-27 11:49
no_load.t
637
B
-r--r--r--
2014-12-27 11:49
overload_fallback.t
388
B
-r--r--r--
2014-12-27 11:49
overload_nomethod.t
362
B
-r--r--r--
2014-12-27 11:49
proxy_constant_subs.t
873
B
-r--r--r--
2014-12-27 11:49
test_require.pm
114
B
-r--r--r--
2014-12-27 11:49
test_use.pm
126
B
-r--r--r--
2014-12-27 11:49
test_use_14937.pm
3
B
-r--r--r--
2014-12-27 11:49
universal.t
1.89
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
/* * Test header file for h2ph * * Try to test as many constructs as possible * For example, the multi-line comment :) */ /* And here's a single line comment :) */ /* Test #define with no indenting, over multiple lines */ #define SQUARE(x) \ ((x)*(x)) /* Test #ifndef and parameter interpretation*/ #ifndef ERROR #define ERROR(x) fprintf(stderr, "%s\n", x[2][3][0]) #endif /* ERROR */ #ifndef _H2PH_H_ #define _H2PH_H_ /* #ident - doesn't really do anything, but I think it always gets included anyway */ #ident "$Revision h2ph.h,v 1.0 98/05/04 20:42:14 billy $" /* Test #undef */ #undef MAX #define MAX(a,b) ((a) > (b) ? (a) : (b)) /* Test #undef'ining an existing constant function */ #define NOTTRUE 0 #undef NOTTRUE /* Test #ifdef */ #ifdef __SOME_UNIMPORTANT_PROPERTY #define MIN(a,b) ((a) < (b) ? (a) : (b)) #endif /* __SOME_UNIMPORTANT_PROPERTY */ /* * Test #if, #elif, #else, #endif, #warn and #error, and '!' * Also test whitespace between the '#' and the command */ #if !(defined __SOMETHING_MORE_IMPORTANT) # warn Be careful... #elif !(defined __SOMETHING_REALLY_REALLY_IMPORTANT) # error "Nup, can't go on" /* ' /* stupid font-lock-mode */ #else /* defined __SOMETHING_MORE_IMPORTANT && defined __SOMETHING_REALLY_REALLY_IMPORTANT */ # define EVERYTHING_IS_OK #endif /* Test && and || */ #undef WHATEVER #if (!((defined __SOMETHING_TRIVIAL && defined __SOMETHING_LESS_SO)) \ || defined __SOMETHING_OVERPOWERING) # define WHATEVER 6 #elif !(defined __SOMETHING_TRIVIAL) /* defined __SOMETHING_LESS_SO */ # define WHATEVER 7 #elif !(defined __SOMETHING_LESS_SO) /* defined __SOMETHING_TRIVIAL */ # define WHATEVER 8 #else /* defined __SOMETHING_TRIVIAL && defined __SOMETHING_LESS_SO */ # define WHATEVER 1000 #endif /* Test passing through the alien constructs (perlbug #34493) */ #ifdef __LANGUAGE_PASCAL__ function Tru64_Pascal(n: Integer): Integer; #endif /* * Test #include, #import and #include_next * #include_next is difficult to test, it really depends on the actual * circumstances - for example, '#include_next <limits.h>' on a Linux system * with 'use lib qw(/opt/perl5/lib/site_perl/i586-linux/linux);' or whatever * your equivalent is... */ #if 0 #include <sys/socket.h> #import "sys/ioctl.h" #include_next <sys/fcntl.h> #endif /* typedefs should be ignored */ typedef struct a_struct { int typedefs_should; char be_ignored; long as_well; } a_typedef; /* * however, typedefs of enums and just plain enums should end up being treated * like a bunch of #defines... */ typedef enum _days_of_week { sun, mon, tue, wed, thu, fri, sat, Sun=0, Mon, Tue, Wed, Thu, Fri, Sat } days_of_week; /* * Some moderate flexing of tri-graph pre substitution. */ ??=ifndef _SOMETHING_TRIGRAPHIC ??=define _SOMETHING_TRIGRAPHIC ??= define SOMETHING_ELSE_TRIGRAPHIC_0 "??!" /* | ??!| || */ ??=define SOMETHING_ELSE_TRIGRAPHIC_1 "??'" /* | ??'| ^| */ ??= define SOMETHING_ELSE_TRIGRAPHIC_2 "??(" /* | ??(| [| */ ??= define SOMETHING_ELSE_TRIGRAPHIC_3 "??)" /* | ??)| ]| */ ??=define SOMETHING_ELSE_TRIGRAPHIC_4 "??-0" /* | ??-| ~| */ ??= define SOMETHING_ELSE_TRIGRAPHIC_5 "??/ " /* | ??/| \| */ ??= define SOMETHING_ELSE_TRIGRAPHIC_6 "??<" /* | ??<| {| */ ??=define SOMETHING_ELSE_TRIGRAPHIC_7 "??=" /* | ??=| #| */ ??= define SOMETHING_ELSE_TRIGRAPHIC_8 "??>" /* | ??>| }| */ ??=endif // test C++-style comment #if 1 typdef struct empty_struct { } // trailing C++-style comment should not force continuation #endif /* comments (that look like string) inside enums... */ enum { /* foo; can't */ }; enum flimflam { flim, /* foo; can't */ flam } flamflim; static __inline__ int blli_in_use(struct atm_blli blli) { return blli.l2_proto || blli.l3_proto; } /* Handle multi-line quoted strings: */ __asm__ __volatile__(" this produces no output "); #define multiline "multiline string" #endif /* _H2PH_H_ */