Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libdate-pcalc-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
tools
[ DIR ]
drwxr-xr-x
EXAMPLES.txt.gz
7.24
KB
-rw-r--r--
TOOLS.txt.gz
1.98
KB
-rw-r--r--
age_in_days_eu.pl.gz
1.42
KB
-rw-r--r--
age_in_days_us.pl.gz
1.42
KB
-rw-r--r--
anniversaries.pl
2.26
KB
-rwxr-xr-x
bug.pl
764
B
-rwxr-xr-x
cal.c
2.71
KB
-rw-r--r--
calendar.pl.gz
5.65
KB
-rw-r--r--
datecalc.pl.gz
2.03
KB
-rw-r--r--
delta.pl
2.54
KB
-rwxr-xr-x
holidays.pl
1.98
KB
-rwxr-xr-x
income.pl
2.86
KB
-rwxr-xr-x
linearcal.pl
1.94
KB
-rwxr-xr-x
nth_weekday.pl
2.24
KB
-rwxr-xr-x
time.pl
1.28
KB
-rwxr-xr-x
vacation.pl
1016
B
-rwxr-xr-x
weiberfastnacht.pl
1.28
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cal.c
/*****************************************************************************/ /* */ /* Copyright (c) 1998 - 2009 by Steffen Beyer. */ /* All rights reserved. */ /* */ /* This program is free software; you can redistribute it */ /* and/or modify it under the same terms as Perl. */ /* */ /*****************************************************************************/ /******************************************************/ /* */ /* Copy ToolBox.h, DatePcalc.h and DatePcalc.o to */ /* this directory, then compile this file and link */ /* with DatePcalc.o, e.g. with */ /* */ /* gcc -o cal cal.c DatePcalc.o */ /* */ /******************************************************/ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "ToolBox.h" #include "DatePcalc.h" int main(int argc, char *argv[]) { int code = 1; char *self; Z_int lang; Z_int month; Z_int year; if ((self = strrchr(argv[0],'/')) != NULL) self++; else self = argv[0]; if (argc != 4) { fprintf(stderr, "Usage: %s <language> <month> <year>\n", self); } else { if (not (lang = DateCalc_Decode_Language(argv[1],strlen(argv[1])))) { lang = (Z_int) atoi(argv[1]); } if ((lang < 1) or (lang > DateCalc_LANGUAGES)) { fprintf(stderr, "%s: the chosen language (%d) is not available!\n", self, lang); } else { DateCalc_Language = lang; if (not (month = DateCalc_Decode_Month(argv[2],strlen(argv[2])))) { month = (Z_int) atoi(argv[2]); } year = (Z_int) atoi(argv[3]); if ((month < 1) or (month > 12)) { fprintf(stderr, "%s: the given month (%d) is out of range!\n", self, month); } else if (year < 1) { fprintf(stderr, "%s: the given year (%d) is out of range!\n", self, year); } else { fprintf(stdout,"%s", DateCalc_Calendar(year,month,false)); code = 0; } } } return(code); }
Close