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
/* * tclFileSystem.h -- * * This file contains the common defintions and prototypes for use by * Tcl's filesystem and path handling layers. * * Copyright (c) 2003 Vince Darley. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #ifndef _TCLFILESYSTEM #define _TCLFILESYSTEM #include "tcl.h" /* * The internal TclFS API provides routines for handling and manipulating * paths efficiently, taking direct advantage of the "path" Tcl_Obj type. * * These functions are not exported at all at present. */ MODULE_SCOPE int TclFSCwdPointerEquals(Tcl_Obj **pathPtrPtr); MODULE_SCOPE int TclFSNormalizeToUniquePath(Tcl_Interp *interp, Tcl_Obj *pathPtr, int startAt); MODULE_SCOPE Tcl_Obj * TclFSMakePathRelative(Tcl_Interp *interp, Tcl_Obj *pathPtr, Tcl_Obj *cwdPtr); MODULE_SCOPE int TclFSEnsureEpochOk(Tcl_Obj *pathPtr, const Tcl_Filesystem **fsPtrPtr); MODULE_SCOPE void TclFSSetPathDetails(Tcl_Obj *pathPtr, const Tcl_Filesystem *fsPtr, ClientData clientData); MODULE_SCOPE Tcl_Obj * TclFSNormalizeAbsolutePath(Tcl_Interp *interp, Tcl_Obj *pathPtr); MODULE_SCOPE size_t TclFSEpoch(void); /* * Private shared variables for use by tclIOUtil.c and tclPathObj.c */ MODULE_SCOPE const Tcl_Filesystem tclNativeFilesystem; /* * Private shared functions for use by tclIOUtil.c, tclPathObj.c and * tclFileName.c, and any platform-specific filesystem code. */ MODULE_SCOPE Tcl_PathType TclFSGetPathType(Tcl_Obj *pathPtr, const Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr); MODULE_SCOPE Tcl_PathType TclFSNonnativePathType(const char *pathPtr, int pathLen, const Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr, Tcl_Obj **driveNameRef); MODULE_SCOPE Tcl_PathType TclGetPathType(Tcl_Obj *pathPtr, const Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr, Tcl_Obj **driveNameRef); MODULE_SCOPE int TclFSEpochOk(size_t filesystemEpoch); MODULE_SCOPE int TclFSCwdIsNative(void); MODULE_SCOPE Tcl_Obj * TclWinVolumeRelativeNormalize(Tcl_Interp *interp, const char *path, Tcl_Obj **useThisCwdPtr); MODULE_SCOPE Tcl_FSPathInFilesystemProc TclNativePathInFilesystem; MODULE_SCOPE Tcl_FSCreateInternalRepProc TclNativeCreateNativeRep; #endif /* _TCLFILESYSTEM */ /* * Local Variables: * mode: c * c-basic-offset: 4 * fill-column: 78 * End: */