Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.141.35.27
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
vim /
vim74 /
compiler /
[ HOME SHELL ]
Name
Size
Permission
Action
README.txt
437
B
-rw-r--r--
ant.vim
941
B
-rw-r--r--
bcc.vim
449
B
-rw-r--r--
bdf.vim
461
B
-rw-r--r--
checkstyle.vim
588
B
-rw-r--r--
cs.vim
626
B
-rw-r--r--
cucumber.vim
559
B
-rw-r--r--
decada.vim
1.9
KB
-rw-r--r--
dot.vim
372
B
-rw-r--r--
erlang.vim
273
B
-rw-r--r--
eruby.vim
859
B
-rw-r--r--
fortran_F.vim
702
B
-rw-r--r--
fortran_cv.vim
747
B
-rw-r--r--
fortran_elf90.vim
802
B
-rw-r--r--
fortran_g77.vim
1.12
KB
-rw-r--r--
fortran_lf95.vim
683
B
-rw-r--r--
fpc.vim
453
B
-rw-r--r--
g95.vim
677
B
-rw-r--r--
gcc.vim
1.09
KB
-rw-r--r--
gfortran.vim
671
B
-rw-r--r--
gnat.vim
2.36
KB
-rw-r--r--
haml.vim
555
B
-rw-r--r--
hp_acc.vim
1.03
KB
-rw-r--r--
icc.vim
585
B
-rw-r--r--
ifort.vim
690
B
-rw-r--r--
intel.vim
595
B
-rw-r--r--
irix5_c.vim
662
B
-rw-r--r--
irix5_cpp.vim
671
B
-rw-r--r--
javac.vim
399
B
-rw-r--r--
jikes.vim
520
B
-rw-r--r--
mcs.vim
864
B
-rw-r--r--
mips_c.vim
691
B
-rw-r--r--
mipspro_c89.vim
721
B
-rw-r--r--
mipspro_cpp.vim
701
B
-rw-r--r--
modelsim_vcom.vim
799
B
-rw-r--r--
msbuild.vim
529
B
-rw-r--r--
msvc.vim
294
B
-rw-r--r--
neato.vim
378
B
-rw-r--r--
ocaml.vim
1.3
KB
-rw-r--r--
onsgmls.vim
503
B
-rw-r--r--
pbx.vim
469
B
-rw-r--r--
perl.vim
1.18
KB
-rw-r--r--
php.vim
707
B
-rw-r--r--
pyunit.vim
407
B
-rw-r--r--
rake.vim
762
B
-rw-r--r--
rspec.vim
734
B
-rw-r--r--
rst.vim
622
B
-rw-r--r--
ruby.vim
1.03
KB
-rw-r--r--
rubyunit.vim
739
B
-rw-r--r--
sass.vim
594
B
-rw-r--r--
se.vim
742
B
-rw-r--r--
splint.vim
2.22
KB
-rw-r--r--
tcl.vim
414
B
-rw-r--r--
tex.vim
1.71
KB
-rw-r--r--
tidy.vim
595
B
-rw-r--r--
xbuild.vim
509
B
-rw-r--r--
xmllint.vim
561
B
-rw-r--r--
xmlwf.vim
454
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : splint.vim
" Vim compiler file " Compiler: splint/lclint (C source code checker) " Maintainer: Ralf Wildenhues <Ralf.Wildenhues@gmx.de> " Splint Home: http://www.splint.org/ " Last Change: 2005 Apr 21 " $Revision: 1.3 $ if exists("current_compiler") finish endif let current_compiler = "splint" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C " adapt this if you want to check more than one file at a time. " put command line options in .splintrc or ~/.splintrc CompilerSet makeprg=splint\ % " Note: when using the new array bounds checking flags: Each warning " usually has several lines and several references to source code mostly " within one or two lines (see sample warning below). The easiest way " not to mess up file name detection and not to jump to all positions is " to add something like " -linelen 500 +boundscompacterrormessages " to your .splintrc and 'set cmdheight=4' or more. " TODO: reliable way to distinguish file names and constraints. " " sample warning (generic): " "foo.c:1006:12: Clauses exit with var referencing local storage in one " case, fresh storage in other case " foo.c:1003:2: Fresh storage var allocated " " sample warning (bounds checking): " "bounds.c: (in function updateEnv) "bounds.c:10:5: Possible out-of-bounds store: " strcpy(str, tmp) " Unable to resolve constraint: " requires maxSet(str @ bounds.c:10:13) >= maxRead(getenv("MYENV") @ " bounds.c:6:9) " needed to satisfy precondition: " requires maxSet(str @ bounds.c:10:13) >= maxRead(tmp @ bounds.c:10:18) " derived from strcpy precondition: requires maxSet(<parameter 1>) >= " maxRead(<parameter 2>) " A memory write may write to an address beyond the allocated buffer. (Use " -boundswrite to inhibit warning) CompilerSet errorformat=%OLCLint*m, \%OSplint*m, \%f(%l\\,%c):\ %m, \%*[\ ]%f:%l:%c:\ %m, \%*[\ ]%f:%l:\ %m, \%*[^\"]\"%f\"%*\\D%l:\ %m, \\"%f\"%*\\D%l:\ %m, \%A%f:%l:%c:\ %m, \%A%f:%l:%m, \\"%f\"\\, \\ line\ %l%*\\D%c%*[^\ ]\ %m, \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', \%DMaking\ %*\\a\ in\ %f, \%C\ %#%m let &cpo = s:cpo_save unlet s:cpo_save
Close