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.112
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
/* * tclStringTrim.h -- * * This file contains the definition of what characters are to be trimmed * from a string by [string trim] by default. It's only needed by Tcl's * implementation; it does not form a public or private API at all. * * Copyright (c) 1987-1993 The Regents of the University of California. * Copyright (c) 1994-1997 Sun Microsystems, Inc. * Copyright (c) 1998-2000 Scriptics Corporation. * Copyright (c) 2002 ActiveState Corporation. * Copyright (c) 2003-2013 Donal K. Fellows. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #ifndef TCL_STRING_TRIM_H #define TCL_STRING_TRIM_H /* * Default set of characters to trim in [string trim] and friends. This is a * UTF-8 literal string containing all Unicode space characters. [TIP #413] */ MODULE_SCOPE const char tclDefaultTrimSet[]; /* * The whitespace trimming set used when [concat]enating. This is a subset of * the above, and deliberately so. */ #define CONCAT_TRIM_SET " \f\v\r\t\n" #endif /* TCL_STRING_TRIM_H */ /* * Local Variables: * mode: c * c-basic-offset: 4 * fill-column: 78 * End: */