├── .gitignore ├── AlCon ├── .cvsignore ├── Changelog ├── Makefile ├── README ├── copying.gpl ├── examples │ ├── .cvsignore │ ├── ex2.c │ ├── exhello.c │ ├── exkbd.c │ ├── exmouse.c │ └── rom-PC437.016 ├── fonts │ ├── count_down-PC437.014 │ ├── count_down-PC437.016 │ ├── rom-PC437.014 │ └── rom-PC437.016 ├── include │ └── AlCon.h ├── src │ └── AlCon.c └── version.txt ├── LICENSE ├── README.md ├── cal ├── BALUG │ ├── ClosePage.pl │ └── Header.pl ├── Base │ ├── ClosePage.pl │ └── Header.pl ├── Common │ └── Header.pl ├── LEEME.txt ├── Material │ └── index.html ├── cal.pl ├── index.html └── test1.pl └── setedit ├── .gitignore ├── INSTALL.txt ├── Makefile.bcc ├── Makefile.nmk ├── README ├── TODO ├── WinNT ├── .gitignore ├── Makefile ├── Makefile.nmk ├── README ├── bccmake.in ├── configed.h ├── makeinfo │ └── makeinfo.exe ├── msvcmake.in └── objs │ └── delete.me ├── calcu ├── calcu.cc ├── calcu.h ├── large.txt ├── parser.c ├── parser.txt ├── parserbr.c ├── parserml.c └── small.c ├── cfgfiles ├── asm51.pmc ├── clippmac.pmc ├── cpmacros.pmc ├── docbook.pmc ├── editor.tip ├── errors.cle ├── eterm │ ├── Setedit │ │ ├── MAIN │ │ └── Setedit.menu │ ├── readme.txt │ └── xterm-eterm-tv ├── examples.slp ├── htmlmac.pmc ├── macros.slp ├── menubind.smn ├── perlmac.pmc ├── pmacros.pmc ├── redmond.smn ├── simple.dst ├── simple.smn ├── simple.tip ├── syntaxhl.shl ├── test_shl │ └── test.vhdl ├── vhdl.pmc └── wmlmac.pmc ├── change.log ├── change0.log ├── config.pl ├── confignt.pl ├── configset ├── configset.bat ├── configure ├── configure.bat ├── conflib.pl ├── copying.dj ├── copying.gpl ├── copying.lgp ├── copying.rh ├── copyrigh ├── debian ├── README ├── README.debian ├── buildpackage ├── changelog ├── compat ├── control ├── copyright ├── files_to_backup ├── info.ex ├── infview.doc-base ├── infview.menu ├── infview.postinst ├── infview.postrm ├── infview.preinst ├── infview.prerm ├── maintainer.notes ├── rules ├── setedit.config ├── setedit.doc-base ├── setedit.menu ├── setedit.postinst ├── setedit.prerm ├── setedit.templates ├── setedit.templates.es └── watch.ex ├── distrib ├── INSTALL.LINUX ├── INSTALL.MAK ├── REMOVE_UNNEEDED ├── VCSA.SH ├── arranca.bat ├── ask_config.sh ├── calltpc7.zip ├── default.map ├── distrib1.txt ├── distrib2.txt ├── distrib3.txt ├── example.zip ├── examples │ ├── examp1.dst │ ├── examp1.epr │ ├── test1.cc │ └── tvrc ├── infINSTALL.MAK ├── infREMOVE_UNNEEDED ├── kextend.zip ├── linux.faq └── setedit.pif ├── doc ├── .gitignore ├── Makefile.bcc ├── editor.tx ├── gnumake.in ├── infeng.tx ├── infview.man ├── install │ ├── bcc.txt │ ├── cygwin.txt │ ├── djgpp.txt │ ├── linux.txt │ ├── mingwin.txt │ ├── msvc.txt │ ├── tools.txt │ └── unix.txt ├── line.par ├── pre_gen │ ├── infview.inf │ ├── infview.txt │ ├── sdg.inf │ ├── sdg.txt │ ├── setedit.inf │ └── setedit.txt ├── readme.1st ├── rhidemac.htm ├── rhidemac.txi ├── rhidemac.txt ├── sdg.tx ├── sdh.c ├── sdh.gpr ├── set.htm ├── set.txi ├── set.txt └── setedit.man ├── easydiag ├── easydia1.h ├── easydiag.h ├── lablchek.cc ├── lablradi.cc ├── snostate.cc ├── snostate.h ├── tcheck2.cc ├── tcheck2.h ├── test.cc ├── tmiclust.cc ├── tmiclust.h ├── tsbutton.cc ├── tsbutton.h ├── tschkarr.cc ├── tschkarr.h ├── tschkbox.cc ├── tschkbox.h ├── tshscrol.cc ├── tshscrol.h ├── tshzgrp.cc ├── tshzgrp.h ├── tsinplin.cc ├── tsinplin.h ├── tsinplpi.cc ├── tsinplpi.h ├── tslabel.cc ├── tslabel.h ├── tslider.cc ├── tslider.h ├── tslistbo.cc ├── tslistbo.h ├── tsradbot.cc ├── tsradbot.h ├── tssortlb.cc ├── tssortlb.h ├── tssortva.h ├── tssosslb.cc ├── tssosslb.h ├── tstatext.cc ├── tstatext.h ├── tstextsc.cc ├── tstextsc.h ├── tstsorlb.cc ├── tstsorlb.h ├── tsvegrp.cc ├── tsvegrp.h ├── tsview.cc ├── tsview.h ├── tsviewco.cc ├── tsviewco.h ├── ttextscr.cc └── ttextscr.h ├── extra ├── djmdr.s ├── dyncat.cc ├── dyncat.h ├── memmove.s ├── mixer.c ├── mixer.h ├── mixersb.c ├── mixoss.c ├── stackdbg.c ├── stackdbg.h ├── strncpyz.cc └── strndup.cc ├── fonts ├── .gitignore ├── BTerminus.sft ├── Makefile ├── Terminus.sft ├── XFont.sft ├── antique.016 ├── antique.sft ├── boxroun0.000 ├── boxround.cc ├── boxround.sft ├── cntdown.cc ├── cntdown.sft ├── cntdown0.000 ├── common1.h ├── common2.h ├── convpcf1.cc ├── intcode.h ├── let.txt ├── medieval.016 ├── medieval.sft ├── ocr.cc ├── ocr.sft ├── ocr0.000 ├── raw2sft.cc ├── roman.016 ├── roman.sft ├── rombios.cc ├── rombios.sft ├── rombios0.000 ├── thin.cc ├── thin.sft └── thin0.000 ├── fromdos.pl ├── fromunix.pl ├── gettext ├── .gitignore ├── Makefile.in ├── bindtextdom.c ├── config.h ├── dcgettext.c ├── dcigettext.c ├── dcngettext.c ├── dgettext.c ├── djgpp.h ├── dngettext.c ├── explodename.c ├── finddomain.c ├── gettext.c ├── gettext.h ├── gettextP.h ├── hash-string.h ├── intl-compat.c ├── l10nflist.c ├── libgettext.h ├── libgnuintl.h ├── loadinfo.h ├── loadmsgcat.c ├── localcharset.c ├── localealias.c ├── ngettext.c ├── plural.c ├── plural.y └── textdomain.c ├── holidays ├── .gitignore ├── Makefile.in ├── README ├── argentina.c ├── datetools.c ├── datetools.h ├── defholidays.c ├── deutschland.c ├── holidays.conf ├── test.c └── test.mak ├── include ├── .gitignore ├── bufun.h ├── ced_clas.h ├── ced_coma.h ├── ced_exte.h ├── ced_inte.h ├── ced_pcre.h ├── ceditint.h ├── ceditor.h ├── completi.h ├── edmsg.h ├── edspecs.h ├── gzfiles.h ├── keytrans.h ├── loadkbin.h ├── loadshl.h ├── pathtool.h ├── pmcoll.h ├── runprog.h ├── sdginter.h ├── setconst.h ├── sindicat.h ├── slpinter.h ├── splinman.h ├── ssyntax.h ├── tags.h ├── tvsetuti.h ├── ucdefs.h └── vername.h ├── infview ├── change.log ├── include │ ├── inf.h │ ├── infalone.h │ ├── infbase.h │ ├── infbaser.h │ ├── infr.h │ └── manview.h ├── inf.cc ├── infbase.cc ├── infdummy.cc ├── infmain.cc ├── infmenu.cc ├── manview.cc ├── names │ ├── nhiscoll.cc │ ├── ninfview.cc │ ├── ninfwind.cc │ └── nmanwind.cc ├── streams │ ├── sinf.cc │ └── sman.cc └── version.txt ├── install ├── .gitignore ├── create.pl ├── datafile.c ├── install.cc └── readme.txt ├── internac ├── .gitignore ├── colors.cc ├── de.po ├── emptymsg.cc ├── es.po ├── fix.c ├── fix.pl ├── getcolors.cc ├── getids.cc ├── gnumake.in ├── h_de.po ├── h_es.po ├── makelist.pl └── utod.pl ├── libbzip2 ├── .gitignore ├── Makefile.bcc ├── Makefile.nmk ├── blocksort.c ├── bzlib.c ├── bzlib.h ├── bzlib_private.h ├── compress.c ├── crctable.c ├── decompress.c ├── gnumake.in ├── huffman.c ├── license ├── randtable.c └── readme ├── libpcre ├── .gitignore ├── Makefile.bcc ├── Makefile.nmk ├── README ├── dftables.c ├── get.c ├── gnumake.in ├── internal.h ├── licence ├── maketables.c ├── pcre.c ├── pcre.h └── study.c ├── librhuti ├── abstorel.cc ├── back2sl.cc ├── basename.cc ├── expvar.cc ├── fexpand.cc ├── io.cc ├── rhutils.h ├── specs.cc ├── splitfn.cc ├── stricat.cc ├── stridown.cc ├── stridup.cc └── strifree.cc ├── libz ├── .gitignore ├── Makefile.bcc ├── Makefile.nmk ├── README ├── adler32.c ├── compress.c ├── crc32.c ├── deflate.c ├── deflate.h ├── gnumake.in ├── gzio.c ├── infblock.c ├── infblock.h ├── infcodes.c ├── infcodes.h ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inftrees.c ├── inftrees.h ├── infutil.c ├── infutil.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h ├── mainsrc ├── accehtml.cc ├── bufun.cc ├── ceditor.cc ├── completi.cc ├── deedidia.cc ├── doedidia.cc ├── dumpfile.cc ├── edconst.cc ├── editorfo.cc ├── editwind.cc ├── edspecs.cc ├── fstrcmp.c ├── gzfiles.cc ├── keytrans.cc ├── linelen.cc ├── loaddefl.cc ├── loadfunc.cc ├── loadshl.cc ├── loadusew.cc ├── macrocom.cc ├── pathtool.cc ├── pclipper.cc ├── pmacros.cc ├── pperl.cc ├── pphp.cc ├── ppython.cc ├── pvarious.cc ├── pvhdl.cc ├── rhideint.cc ├── sdginter.cc ├── search.cc ├── slpinter.cc ├── splinman.cc ├── ssyntax.cc ├── tags.cc └── tsindica.cc ├── makes ├── .gitignore ├── Makefile ├── allegro.cfg ├── amp3.gpr ├── amp3.imk ├── amp3.umk ├── blink.c ├── common.bmk ├── common.imk ├── common.nmk ├── config.bcc ├── config.nmk ├── djgpp │ ├── compinf.pl │ ├── compress.bat │ └── compress.pl ├── djgppenv.env ├── easydiag.gpr ├── easydiag.imk ├── easydiag.umk ├── editor.bmk ├── editor.gpr ├── editor.imk ├── editor.mkf ├── editor.umk ├── extra.gpr ├── extra.imk ├── extra.umk ├── extrimk.cc ├── genimk.cc ├── includer.bmk ├── includer.imk ├── inffd.gpr ├── inffd.imk ├── inffd.umk ├── infview.bmk ├── infview.gpr ├── infview.imk ├── infview.mkf ├── infview.umk ├── install.gpr ├── install.imk ├── install.mkf ├── install.umk ├── librhuti.gpr ├── librhuti.imk ├── librhuti.umk ├── libset.gpr ├── libset.imk ├── libset.mkf ├── libset.umk ├── line.par ├── linux.env ├── linux │ ├── .gitignore │ ├── compinf.pl │ └── compress.pl ├── linux_set.env ├── lista ├── listaxtr ├── mlink.c ├── obj │ └── delete.me ├── objinf │ └── delete.me ├── objlib │ └── delete.me ├── objsdg │ └── delete.me ├── r.bat ├── readme.txt ├── sdgcline.gpr ├── sdgcline.imk ├── sdgcline.mkf ├── sdgcline.umk ├── settv.gpr ├── settv.imk ├── settv.umk ├── testeasy.gpr ├── testeasy.imk ├── testeasy.mkf ├── testeasy.umk ├── tmp │ ├── delete.me │ └── test.cc ├── try-y.bat ├── yamd-off.bat ├── yamd-on.bat └── yamddos.env ├── miscperl.pl ├── mp3 ├── ampdiag.cc ├── consts.h ├── intermp3.cc ├── intermp3.h ├── libamp │ ├── .gitignore │ ├── amp.h │ ├── audio.h │ ├── audioalg.c │ ├── audioio.h │ ├── audiolib.c │ ├── common.imk │ ├── config.h │ ├── controldata.h │ ├── dump.c │ ├── dump.h │ ├── formats.c │ ├── formats.h │ ├── getbits.c │ ├── getbits.h │ ├── getdata.c │ ├── getdata.h │ ├── guicontr.c │ ├── guicontrol.h │ ├── huffman.c │ ├── huffman.h │ ├── layer2.c │ ├── layer2.h │ ├── layer3.c │ ├── layer3.h │ ├── libamp.gpr │ ├── libamp.h │ ├── libamp.imk │ ├── libamp.mkf │ ├── libamp.umk │ ├── misc2.c │ ├── misc2.h │ ├── obj │ │ └── delete.me │ ├── position.c │ ├── position.h │ ├── proto.h │ ├── readme │ ├── readme.txt │ ├── rtbuf.c │ ├── rtbuf.h │ ├── transfor.c │ ├── transform.h │ └── util.c ├── mp3list.cc ├── mp3play.cc ├── mp3play.h └── mpegsound │ ├── .gitignore │ ├── bitwindow.cc │ ├── common.imk │ ├── fileinput.cc │ ├── fileplayer.cc │ ├── filter.cc │ ├── filter_2.cc │ ├── httpinput.cc │ ├── huffmantable.cc │ ├── mpegsnd.gpr │ ├── mpegsnd.imk │ ├── mpegsnd.mkf │ ├── mpegsnd.umk │ ├── mpegsound.h │ ├── mpegtable.cc │ ├── mpegtoraw.cc │ ├── mpegwtoraw.cc │ ├── mpg_locals.h │ ├── mpglayr1.cc │ ├── mpglayr2.cc │ ├── mpglayr3.cc │ ├── obj │ └── delete.me │ ├── osdisk.cc │ ├── rawplayer.cc │ ├── rawtofile.cc │ ├── rawtowav.cc │ ├── soundinputstream.cc │ ├── soundplayer.cc │ └── wavetoraw.cc ├── names ├── nceditor.cc ├── ndskwasc.cc ├── ndskwcal.cc ├── ndskwcli.cc ├── ndskwclo.cc ├── ndskwedi.cc ├── ndskwhel.cc ├── ndskwman.cc ├── ndskwmes.cc ├── ndskwmp3.cc ├── ndskwprj.cc ├── neditwin.cc ├── nfileedi.cc ├── nsindica.cc └── ntedcol.cc ├── policy.txt ├── redhat ├── .gitignore ├── README ├── config-rpm.sh ├── create-all-rpms.sh ├── create-dirs.sh ├── create-rpms.sh └── setedit.spec.in ├── scrnsave ├── Makefile ├── copying ├── extrscsv.txt ├── fakealle │ ├── fakealle.c │ ├── fakealle.gpr │ ├── fakealle.mak │ ├── include │ │ ├── fakealle.h │ │ ├── putscree.h │ │ └── varios.h │ ├── putscree.c │ └── varios1.c ├── how-to.txt ├── plasma1 │ ├── ps1.c │ ├── ps1.gpr │ └── ps1.mak ├── plasma2 │ ├── ps2.c │ ├── ps2.gpr │ └── ps2.mak ├── plasma3 │ ├── ps3.c │ ├── ps3.gpr │ └── ps3.mak ├── plasma4 │ ├── ps4.c │ ├── ps4.gpr │ └── ps4.mak ├── plasmlib │ ├── include │ │ ├── lissa.h │ │ ├── math1.h │ │ ├── math2.h │ │ ├── math4.h │ │ ├── mixsurf.h │ │ ├── mksurf.h │ │ ├── mksurf4.h │ │ ├── movsurf1.h │ │ ├── movsurf2.h │ │ ├── palette.h │ │ └── plasa1.h │ ├── lissa.c │ ├── math1.c │ ├── math2.c │ ├── math4.c │ ├── mixsfake.gpr │ ├── mixsfake.mak │ ├── mixsurf.c │ ├── mksurf1.c │ ├── mksurf2.c │ ├── mksurf4.c │ ├── movsurf1.c │ ├── movsurf2.c │ ├── obj │ │ └── delete.me │ ├── objfake │ │ └── delete.me │ ├── palette.c │ ├── plasa1.c │ ├── plasa2.c │ ├── plasa2g.c │ ├── plasa3.c │ ├── plasmlib.gpr │ └── plasmlib.mak └── readme.txt ├── sdg ├── bufun2.cc ├── edspecs2.cc ├── gettext.c ├── html.frt ├── include │ ├── mli.h │ ├── mliabase.h │ ├── mliasimp.h │ ├── mlibase.h │ ├── mlicsdg.h │ ├── mlieditd.h │ ├── mliedito.h │ ├── mlisdg.h │ ├── mlisdgi.h │ ├── mlivar.h │ └── txhgen.h ├── mli.cc ├── mliasimp.cc ├── mlicsdg.cc ├── mliediti.cc ├── mliedito.cc ├── mlisdg.cc ├── multi.frt ├── sdg.his ├── tex.frt ├── txhgen-i.htm ├── txhgen-i.txi ├── txhgen-i.txt ├── txhgen.cc ├── txhgen.txt └── txhmain.cc ├── set_insed ├── setedit ├── advice.cc ├── ascii.cc ├── boardmix.cc ├── calendar.cc ├── codepage.cc ├── debug.cc ├── dskascii.cc ├── dskcalen.cc ├── dskclip.cc ├── dskclose.cc ├── dskedito.cc ├── dskhelp.cc ├── dskman.cc ├── dskmessa.cc ├── dskmp3.cc ├── dskwin.cc ├── dstfile.cc ├── edcolor.cc ├── edfonts.cc ├── editdiag.cc ├── editmain.cc ├── editmenu.cc ├── editpale.cc ├── edkeys.cc ├── edmsg.cc ├── edprefs.cc ├── edprint.cc ├── edprj.cc ├── getctxhl.cc ├── holidays.cc ├── include │ ├── advice.h │ ├── ascii.h │ ├── calendar.h │ ├── codepage.h │ ├── debug.h │ ├── dskascii.h │ ├── dskcalen.h │ ├── dskclip.h │ ├── dskclose.h │ ├── dskedito.h │ ├── dskhelp.h │ ├── dskman.h │ ├── dskmessa.h │ ├── dskmp3.h │ ├── dskprj.h │ ├── dskwin.h │ ├── edcollec.h │ ├── editcoma.h │ ├── edprint.h │ ├── loadcle.h │ ├── loadnobkp.h │ ├── pal.h │ ├── palbcc.h │ ├── palconv.h │ ├── paldjd.h │ ├── palfte.h │ ├── palmc.h │ ├── pathlist.h │ ├── setapp.h │ └── tpaltext.h ├── intgrep.cc ├── loadcle.cc ├── loadnobkp.cc ├── menuload.cc ├── msignal.cc ├── pathlist.cc ├── runprog.cc ├── scresave.cc ├── streams │ ├── sdskasci.cc │ ├── sdskcale.cc │ ├── sdskclip.cc │ ├── sdskclos.cc │ ├── sdskedit.cc │ ├── sdskhelp.cc │ ├── sdskman.cc │ ├── sdskmess.cc │ ├── sdskmp3.cc │ ├── sdskprj.cc │ └── sedcolle.cc ├── tedcolle.cc ├── tips.cc ├── tpaltext.cc └── winlistd.cc ├── settvuti ├── diaghelp.cc ├── dktclock.cc ├── fileopen.cc ├── fiopeaid.cc ├── include │ ├── diaghelp.h │ ├── dktclock.h │ ├── edhists.h │ ├── fileopen.h │ ├── fiopeaid.h │ ├── inputsca.h │ ├── nostatex.h │ ├── sarray.cc │ ├── sarray.h │ ├── setstack.h │ ├── settvuti.h │ ├── tdiagaid.h │ ├── tdiagrow.h │ ├── tinppipe.h │ ├── tnocastc.h │ ├── tnosostr.h │ ├── tprogbar.h │ ├── tprogdia.h │ ├── tprogrdi.h │ ├── tprogres.h │ ├── tstringa.h │ ├── tstrlbox.h │ └── viewplus.h ├── inputsca.cc ├── names │ ├── ninputsc.cc │ ├── nprogbar.cc │ ├── nprogres.cc │ ├── ntnocast.cc │ └── ntnosost.cc ├── nostatex.cc ├── setstack.cc ├── streams │ ├── sprogbar.cc │ ├── sprogres.cc │ ├── stnocast.cc │ └── stnonost.cc ├── tdiagaid.cc ├── tdiagrow.cc ├── tinppipe.cc ├── tnocastc.cc ├── tnosostr.cc ├── tprogbar.cc ├── tprogdia.cc ├── tprogrdi.cc ├── tprogres.cc ├── tstrlbox.cc ├── uisarray.cc ├── ussarray.cc └── viewplus.cc ├── snapshot.pl ├── streams ├── sceditor.cc ├── sedhelp.cc └── ssindica.cc ├── tools ├── .gitignore ├── TVpo.pl ├── applycvs.pl ├── cmclist.c ├── conv.cc ├── cvssget ├── cvssput ├── cvssyncget.cc ├── cvssyncput.cc ├── kbv.c ├── lines.pl ├── makediff.bat ├── makediff.pl ├── mapa.cc ├── mft.c ├── mft.gpr ├── mideline.cc ├── moverepo.pl ├── putcopyr.pl ├── sarge.supp ├── symify.cc ├── valgrind.cmd └── woody.supp ├── update ├── update.bat ├── updaterev.pl ├── version.txt ├── windos.faq └── www-site ├── .gitignore ├── ComparativaGCC.html ├── ComparativaGCC_html_m35e8e2b6.jpg ├── Cygwin_install.txt ├── announce.html ├── change.html ├── examples.css ├── iguazu.html ├── index.html ├── infview.html ├── my_file1.html ├── my_file2.html ├── my_file3.html ├── pmoreno.html ├── readme.html ├── readmeinf.html ├── tag_imgs ├── a_project.png ├── advice_tags.png ├── class_child1.png ├── class_list.png ├── d_tag_options.png ├── generate_tags.png ├── jump_symbol.png ├── name_project.png ├── project_open.png ├── sorted.png ├── symbols_example.png ├── tag_options.png ├── this_and_parents.png ├── this_class.png └── w_completion.png ├── tags.html ├── update └── xterm.html /.gitignore: -------------------------------------------------------------------------------- 1 | tvision 2 | setedit/libmigdb 3 | -------------------------------------------------------------------------------- /AlCon/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/.cvsignore -------------------------------------------------------------------------------- /AlCon/Changelog: -------------------------------------------------------------------------------- 1 | $Log$ 2 | -------------------------------------------------------------------------------- /AlCon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/Makefile -------------------------------------------------------------------------------- /AlCon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/README -------------------------------------------------------------------------------- /AlCon/copying.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/copying.gpl -------------------------------------------------------------------------------- /AlCon/examples/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/.cvsignore -------------------------------------------------------------------------------- /AlCon/examples/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/ex2.c -------------------------------------------------------------------------------- /AlCon/examples/exhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/exhello.c -------------------------------------------------------------------------------- /AlCon/examples/exkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/exkbd.c -------------------------------------------------------------------------------- /AlCon/examples/exmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/exmouse.c -------------------------------------------------------------------------------- /AlCon/examples/rom-PC437.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/examples/rom-PC437.016 -------------------------------------------------------------------------------- /AlCon/fonts/count_down-PC437.014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/fonts/count_down-PC437.014 -------------------------------------------------------------------------------- /AlCon/fonts/count_down-PC437.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/fonts/count_down-PC437.016 -------------------------------------------------------------------------------- /AlCon/fonts/rom-PC437.014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/fonts/rom-PC437.014 -------------------------------------------------------------------------------- /AlCon/fonts/rom-PC437.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/fonts/rom-PC437.016 -------------------------------------------------------------------------------- /AlCon/include/AlCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/include/AlCon.h -------------------------------------------------------------------------------- /AlCon/src/AlCon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/AlCon/src/AlCon.c -------------------------------------------------------------------------------- /AlCon/version.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/README.md -------------------------------------------------------------------------------- /cal/BALUG/ClosePage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/BALUG/ClosePage.pl -------------------------------------------------------------------------------- /cal/BALUG/Header.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/BALUG/Header.pl -------------------------------------------------------------------------------- /cal/Base/ClosePage.pl: -------------------------------------------------------------------------------- 1 | sub BaseClosePage 2 | { 3 | print FilOut "\n\n"; 4 | return 0; 5 | } 6 | 1; 7 | -------------------------------------------------------------------------------- /cal/Base/Header.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/Base/Header.pl -------------------------------------------------------------------------------- /cal/Common/Header.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/Common/Header.pl -------------------------------------------------------------------------------- /cal/LEEME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/LEEME.txt -------------------------------------------------------------------------------- /cal/Material/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/Material/index.html -------------------------------------------------------------------------------- /cal/cal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/cal.pl -------------------------------------------------------------------------------- /cal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/index.html -------------------------------------------------------------------------------- /cal/test1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/cal/test1.pl -------------------------------------------------------------------------------- /setedit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/.gitignore -------------------------------------------------------------------------------- /setedit/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/INSTALL.txt -------------------------------------------------------------------------------- /setedit/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/Makefile.bcc -------------------------------------------------------------------------------- /setedit/Makefile.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/Makefile.nmk -------------------------------------------------------------------------------- /setedit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/README -------------------------------------------------------------------------------- /setedit/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/TODO -------------------------------------------------------------------------------- /setedit/WinNT/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /setedit/WinNT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/Makefile -------------------------------------------------------------------------------- /setedit/WinNT/Makefile.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/Makefile.nmk -------------------------------------------------------------------------------- /setedit/WinNT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/README -------------------------------------------------------------------------------- /setedit/WinNT/bccmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/bccmake.in -------------------------------------------------------------------------------- /setedit/WinNT/configed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/configed.h -------------------------------------------------------------------------------- /setedit/WinNT/makeinfo/makeinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/makeinfo/makeinfo.exe -------------------------------------------------------------------------------- /setedit/WinNT/msvcmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/msvcmake.in -------------------------------------------------------------------------------- /setedit/WinNT/objs/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/WinNT/objs/delete.me -------------------------------------------------------------------------------- /setedit/calcu/calcu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/calcu.cc -------------------------------------------------------------------------------- /setedit/calcu/calcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/calcu.h -------------------------------------------------------------------------------- /setedit/calcu/large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/large.txt -------------------------------------------------------------------------------- /setedit/calcu/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/parser.c -------------------------------------------------------------------------------- /setedit/calcu/parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/parser.txt -------------------------------------------------------------------------------- /setedit/calcu/parserbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/parserbr.c -------------------------------------------------------------------------------- /setedit/calcu/parserml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/parserml.c -------------------------------------------------------------------------------- /setedit/calcu/small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/calcu/small.c -------------------------------------------------------------------------------- /setedit/cfgfiles/asm51.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/asm51.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/clippmac.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/clippmac.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/cpmacros.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/cpmacros.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/docbook.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/docbook.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/editor.tip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/editor.tip -------------------------------------------------------------------------------- /setedit/cfgfiles/errors.cle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/errors.cle -------------------------------------------------------------------------------- /setedit/cfgfiles/eterm/Setedit/MAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/eterm/Setedit/MAIN -------------------------------------------------------------------------------- /setedit/cfgfiles/eterm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/eterm/readme.txt -------------------------------------------------------------------------------- /setedit/cfgfiles/examples.slp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/examples.slp -------------------------------------------------------------------------------- /setedit/cfgfiles/htmlmac.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/htmlmac.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/macros.slp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/macros.slp -------------------------------------------------------------------------------- /setedit/cfgfiles/menubind.smn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/menubind.smn -------------------------------------------------------------------------------- /setedit/cfgfiles/perlmac.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/perlmac.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/pmacros.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/pmacros.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/redmond.smn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/redmond.smn -------------------------------------------------------------------------------- /setedit/cfgfiles/simple.dst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/simple.dst -------------------------------------------------------------------------------- /setedit/cfgfiles/simple.smn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/simple.smn -------------------------------------------------------------------------------- /setedit/cfgfiles/simple.tip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/simple.tip -------------------------------------------------------------------------------- /setedit/cfgfiles/syntaxhl.shl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/syntaxhl.shl -------------------------------------------------------------------------------- /setedit/cfgfiles/test_shl/test.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/test_shl/test.vhdl -------------------------------------------------------------------------------- /setedit/cfgfiles/vhdl.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/vhdl.pmc -------------------------------------------------------------------------------- /setedit/cfgfiles/wmlmac.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/cfgfiles/wmlmac.pmc -------------------------------------------------------------------------------- /setedit/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/change.log -------------------------------------------------------------------------------- /setedit/change0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/change0.log -------------------------------------------------------------------------------- /setedit/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/config.pl -------------------------------------------------------------------------------- /setedit/confignt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/confignt.pl -------------------------------------------------------------------------------- /setedit/configset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/configset -------------------------------------------------------------------------------- /setedit/configset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/configset.bat -------------------------------------------------------------------------------- /setedit/configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | perl config.pl "$@" 3 | -------------------------------------------------------------------------------- /setedit/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/configure.bat -------------------------------------------------------------------------------- /setedit/conflib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/conflib.pl -------------------------------------------------------------------------------- /setedit/copying.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/copying.dj -------------------------------------------------------------------------------- /setedit/copying.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/copying.gpl -------------------------------------------------------------------------------- /setedit/copying.lgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/copying.lgp -------------------------------------------------------------------------------- /setedit/copying.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/copying.rh -------------------------------------------------------------------------------- /setedit/copyrigh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/copyrigh -------------------------------------------------------------------------------- /setedit/debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/README -------------------------------------------------------------------------------- /setedit/debian/README.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/README.debian -------------------------------------------------------------------------------- /setedit/debian/buildpackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/buildpackage -------------------------------------------------------------------------------- /setedit/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/changelog -------------------------------------------------------------------------------- /setedit/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /setedit/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/control -------------------------------------------------------------------------------- /setedit/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/copyright -------------------------------------------------------------------------------- /setedit/debian/files_to_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/files_to_backup -------------------------------------------------------------------------------- /setedit/debian/info.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/info.ex -------------------------------------------------------------------------------- /setedit/debian/infview.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.doc-base -------------------------------------------------------------------------------- /setedit/debian/infview.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.menu -------------------------------------------------------------------------------- /setedit/debian/infview.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.postinst -------------------------------------------------------------------------------- /setedit/debian/infview.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.postrm -------------------------------------------------------------------------------- /setedit/debian/infview.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.preinst -------------------------------------------------------------------------------- /setedit/debian/infview.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/infview.prerm -------------------------------------------------------------------------------- /setedit/debian/maintainer.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/maintainer.notes -------------------------------------------------------------------------------- /setedit/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/rules -------------------------------------------------------------------------------- /setedit/debian/setedit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.config -------------------------------------------------------------------------------- /setedit/debian/setedit.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.doc-base -------------------------------------------------------------------------------- /setedit/debian/setedit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.menu -------------------------------------------------------------------------------- /setedit/debian/setedit.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.postinst -------------------------------------------------------------------------------- /setedit/debian/setedit.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.prerm -------------------------------------------------------------------------------- /setedit/debian/setedit.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.templates -------------------------------------------------------------------------------- /setedit/debian/setedit.templates.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/setedit.templates.es -------------------------------------------------------------------------------- /setedit/debian/watch.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/debian/watch.ex -------------------------------------------------------------------------------- /setedit/distrib/INSTALL.LINUX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/INSTALL.LINUX -------------------------------------------------------------------------------- /setedit/distrib/INSTALL.MAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/INSTALL.MAK -------------------------------------------------------------------------------- /setedit/distrib/REMOVE_UNNEEDED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/REMOVE_UNNEEDED -------------------------------------------------------------------------------- /setedit/distrib/VCSA.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/VCSA.SH -------------------------------------------------------------------------------- /setedit/distrib/arranca.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/arranca.bat -------------------------------------------------------------------------------- /setedit/distrib/ask_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/ask_config.sh -------------------------------------------------------------------------------- /setedit/distrib/calltpc7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/calltpc7.zip -------------------------------------------------------------------------------- /setedit/distrib/default.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/default.map -------------------------------------------------------------------------------- /setedit/distrib/distrib1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/distrib1.txt -------------------------------------------------------------------------------- /setedit/distrib/distrib2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/distrib2.txt -------------------------------------------------------------------------------- /setedit/distrib/distrib3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/distrib3.txt -------------------------------------------------------------------------------- /setedit/distrib/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/example.zip -------------------------------------------------------------------------------- /setedit/distrib/examples/examp1.dst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/examples/examp1.dst -------------------------------------------------------------------------------- /setedit/distrib/examples/examp1.epr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/examples/examp1.epr -------------------------------------------------------------------------------- /setedit/distrib/examples/test1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/examples/test1.cc -------------------------------------------------------------------------------- /setedit/distrib/examples/tvrc: -------------------------------------------------------------------------------- 1 | [TV] 2 | { 3 | [Linux] 4 | { 5 | UseSecondaryFont=1 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /setedit/distrib/infINSTALL.MAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/infINSTALL.MAK -------------------------------------------------------------------------------- /setedit/distrib/infREMOVE_UNNEEDED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/infREMOVE_UNNEEDED -------------------------------------------------------------------------------- /setedit/distrib/kextend.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/kextend.zip -------------------------------------------------------------------------------- /setedit/distrib/linux.faq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/linux.faq -------------------------------------------------------------------------------- /setedit/distrib/setedit.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/distrib/setedit.pif -------------------------------------------------------------------------------- /setedit/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/.gitignore -------------------------------------------------------------------------------- /setedit/doc/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/Makefile.bcc -------------------------------------------------------------------------------- /setedit/doc/editor.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/editor.tx -------------------------------------------------------------------------------- /setedit/doc/gnumake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/gnumake.in -------------------------------------------------------------------------------- /setedit/doc/infeng.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/infeng.tx -------------------------------------------------------------------------------- /setedit/doc/infview.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/infview.man -------------------------------------------------------------------------------- /setedit/doc/install/bcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/bcc.txt -------------------------------------------------------------------------------- /setedit/doc/install/cygwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/cygwin.txt -------------------------------------------------------------------------------- /setedit/doc/install/djgpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/djgpp.txt -------------------------------------------------------------------------------- /setedit/doc/install/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/linux.txt -------------------------------------------------------------------------------- /setedit/doc/install/mingwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/mingwin.txt -------------------------------------------------------------------------------- /setedit/doc/install/msvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/msvc.txt -------------------------------------------------------------------------------- /setedit/doc/install/tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/tools.txt -------------------------------------------------------------------------------- /setedit/doc/install/unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/install/unix.txt -------------------------------------------------------------------------------- /setedit/doc/line.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/line.par -------------------------------------------------------------------------------- /setedit/doc/pre_gen/infview.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/infview.inf -------------------------------------------------------------------------------- /setedit/doc/pre_gen/infview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/infview.txt -------------------------------------------------------------------------------- /setedit/doc/pre_gen/sdg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/sdg.inf -------------------------------------------------------------------------------- /setedit/doc/pre_gen/sdg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/sdg.txt -------------------------------------------------------------------------------- /setedit/doc/pre_gen/setedit.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/setedit.inf -------------------------------------------------------------------------------- /setedit/doc/pre_gen/setedit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/pre_gen/setedit.txt -------------------------------------------------------------------------------- /setedit/doc/readme.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/readme.1st -------------------------------------------------------------------------------- /setedit/doc/rhidemac.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/rhidemac.htm -------------------------------------------------------------------------------- /setedit/doc/rhidemac.txi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/rhidemac.txi -------------------------------------------------------------------------------- /setedit/doc/rhidemac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/rhidemac.txt -------------------------------------------------------------------------------- /setedit/doc/sdg.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/sdg.tx -------------------------------------------------------------------------------- /setedit/doc/sdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/sdh.c -------------------------------------------------------------------------------- /setedit/doc/sdh.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/sdh.gpr -------------------------------------------------------------------------------- /setedit/doc/set.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/set.htm -------------------------------------------------------------------------------- /setedit/doc/set.txi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/set.txi -------------------------------------------------------------------------------- /setedit/doc/set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/set.txt -------------------------------------------------------------------------------- /setedit/doc/setedit.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/doc/setedit.man -------------------------------------------------------------------------------- /setedit/easydiag/easydia1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/easydia1.h -------------------------------------------------------------------------------- /setedit/easydiag/easydiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/easydiag.h -------------------------------------------------------------------------------- /setedit/easydiag/lablchek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/lablchek.cc -------------------------------------------------------------------------------- /setedit/easydiag/lablradi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/lablradi.cc -------------------------------------------------------------------------------- /setedit/easydiag/snostate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/snostate.cc -------------------------------------------------------------------------------- /setedit/easydiag/snostate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/snostate.h -------------------------------------------------------------------------------- /setedit/easydiag/tcheck2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tcheck2.cc -------------------------------------------------------------------------------- /setedit/easydiag/tcheck2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tcheck2.h -------------------------------------------------------------------------------- /setedit/easydiag/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/test.cc -------------------------------------------------------------------------------- /setedit/easydiag/tmiclust.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tmiclust.cc -------------------------------------------------------------------------------- /setedit/easydiag/tmiclust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tmiclust.h -------------------------------------------------------------------------------- /setedit/easydiag/tsbutton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsbutton.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsbutton.h -------------------------------------------------------------------------------- /setedit/easydiag/tschkarr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tschkarr.cc -------------------------------------------------------------------------------- /setedit/easydiag/tschkarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tschkarr.h -------------------------------------------------------------------------------- /setedit/easydiag/tschkbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tschkbox.cc -------------------------------------------------------------------------------- /setedit/easydiag/tschkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tschkbox.h -------------------------------------------------------------------------------- /setedit/easydiag/tshscrol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tshscrol.cc -------------------------------------------------------------------------------- /setedit/easydiag/tshscrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tshscrol.h -------------------------------------------------------------------------------- /setedit/easydiag/tshzgrp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tshzgrp.cc -------------------------------------------------------------------------------- /setedit/easydiag/tshzgrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tshzgrp.h -------------------------------------------------------------------------------- /setedit/easydiag/tsinplin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsinplin.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsinplin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsinplin.h -------------------------------------------------------------------------------- /setedit/easydiag/tsinplpi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsinplpi.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsinplpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsinplpi.h -------------------------------------------------------------------------------- /setedit/easydiag/tslabel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslabel.cc -------------------------------------------------------------------------------- /setedit/easydiag/tslabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslabel.h -------------------------------------------------------------------------------- /setedit/easydiag/tslider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslider.cc -------------------------------------------------------------------------------- /setedit/easydiag/tslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslider.h -------------------------------------------------------------------------------- /setedit/easydiag/tslistbo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslistbo.cc -------------------------------------------------------------------------------- /setedit/easydiag/tslistbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tslistbo.h -------------------------------------------------------------------------------- /setedit/easydiag/tsradbot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsradbot.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsradbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsradbot.h -------------------------------------------------------------------------------- /setedit/easydiag/tssortlb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tssortlb.cc -------------------------------------------------------------------------------- /setedit/easydiag/tssortlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tssortlb.h -------------------------------------------------------------------------------- /setedit/easydiag/tssortva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tssortva.h -------------------------------------------------------------------------------- /setedit/easydiag/tssosslb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tssosslb.cc -------------------------------------------------------------------------------- /setedit/easydiag/tssosslb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tssosslb.h -------------------------------------------------------------------------------- /setedit/easydiag/tstatext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstatext.cc -------------------------------------------------------------------------------- /setedit/easydiag/tstatext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstatext.h -------------------------------------------------------------------------------- /setedit/easydiag/tstextsc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstextsc.cc -------------------------------------------------------------------------------- /setedit/easydiag/tstextsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstextsc.h -------------------------------------------------------------------------------- /setedit/easydiag/tstsorlb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstsorlb.cc -------------------------------------------------------------------------------- /setedit/easydiag/tstsorlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tstsorlb.h -------------------------------------------------------------------------------- /setedit/easydiag/tsvegrp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsvegrp.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsvegrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsvegrp.h -------------------------------------------------------------------------------- /setedit/easydiag/tsview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsview.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsview.h -------------------------------------------------------------------------------- /setedit/easydiag/tsviewco.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsviewco.cc -------------------------------------------------------------------------------- /setedit/easydiag/tsviewco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/tsviewco.h -------------------------------------------------------------------------------- /setedit/easydiag/ttextscr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/ttextscr.cc -------------------------------------------------------------------------------- /setedit/easydiag/ttextscr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/easydiag/ttextscr.h -------------------------------------------------------------------------------- /setedit/extra/djmdr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/djmdr.s -------------------------------------------------------------------------------- /setedit/extra/dyncat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/dyncat.cc -------------------------------------------------------------------------------- /setedit/extra/dyncat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/dyncat.h -------------------------------------------------------------------------------- /setedit/extra/memmove.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/memmove.s -------------------------------------------------------------------------------- /setedit/extra/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/mixer.c -------------------------------------------------------------------------------- /setedit/extra/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/mixer.h -------------------------------------------------------------------------------- /setedit/extra/mixersb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/mixersb.c -------------------------------------------------------------------------------- /setedit/extra/mixoss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/mixoss.c -------------------------------------------------------------------------------- /setedit/extra/stackdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/stackdbg.c -------------------------------------------------------------------------------- /setedit/extra/stackdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/stackdbg.h -------------------------------------------------------------------------------- /setedit/extra/strncpyz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/strncpyz.cc -------------------------------------------------------------------------------- /setedit/extra/strndup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/extra/strndup.cc -------------------------------------------------------------------------------- /setedit/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | raw2sft 2 | -------------------------------------------------------------------------------- /setedit/fonts/BTerminus.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/BTerminus.sft -------------------------------------------------------------------------------- /setedit/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/Makefile -------------------------------------------------------------------------------- /setedit/fonts/Terminus.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/Terminus.sft -------------------------------------------------------------------------------- /setedit/fonts/XFont.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/XFont.sft -------------------------------------------------------------------------------- /setedit/fonts/antique.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/antique.016 -------------------------------------------------------------------------------- /setedit/fonts/antique.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/antique.sft -------------------------------------------------------------------------------- /setedit/fonts/boxroun0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/boxroun0.000 -------------------------------------------------------------------------------- /setedit/fonts/boxround.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/boxround.cc -------------------------------------------------------------------------------- /setedit/fonts/boxround.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/boxround.sft -------------------------------------------------------------------------------- /setedit/fonts/cntdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/cntdown.cc -------------------------------------------------------------------------------- /setedit/fonts/cntdown.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/cntdown.sft -------------------------------------------------------------------------------- /setedit/fonts/cntdown0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/cntdown0.000 -------------------------------------------------------------------------------- /setedit/fonts/common1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/common1.h -------------------------------------------------------------------------------- /setedit/fonts/common2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/common2.h -------------------------------------------------------------------------------- /setedit/fonts/convpcf1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/convpcf1.cc -------------------------------------------------------------------------------- /setedit/fonts/intcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/intcode.h -------------------------------------------------------------------------------- /setedit/fonts/let.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/let.txt -------------------------------------------------------------------------------- /setedit/fonts/medieval.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/medieval.016 -------------------------------------------------------------------------------- /setedit/fonts/medieval.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/medieval.sft -------------------------------------------------------------------------------- /setedit/fonts/ocr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/ocr.cc -------------------------------------------------------------------------------- /setedit/fonts/ocr.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/ocr.sft -------------------------------------------------------------------------------- /setedit/fonts/ocr0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/ocr0.000 -------------------------------------------------------------------------------- /setedit/fonts/raw2sft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/raw2sft.cc -------------------------------------------------------------------------------- /setedit/fonts/roman.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/roman.016 -------------------------------------------------------------------------------- /setedit/fonts/roman.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/roman.sft -------------------------------------------------------------------------------- /setedit/fonts/rombios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/rombios.cc -------------------------------------------------------------------------------- /setedit/fonts/rombios.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/rombios.sft -------------------------------------------------------------------------------- /setedit/fonts/rombios0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/rombios0.000 -------------------------------------------------------------------------------- /setedit/fonts/thin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/thin.cc -------------------------------------------------------------------------------- /setedit/fonts/thin.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/thin.sft -------------------------------------------------------------------------------- /setedit/fonts/thin0.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fonts/thin0.000 -------------------------------------------------------------------------------- /setedit/fromdos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fromdos.pl -------------------------------------------------------------------------------- /setedit/fromunix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/fromunix.pl -------------------------------------------------------------------------------- /setedit/gettext/.gitignore: -------------------------------------------------------------------------------- 1 | libintl.h 2 | config.h 3 | Makefile 4 | 5 | -------------------------------------------------------------------------------- /setedit/gettext/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/Makefile.in -------------------------------------------------------------------------------- /setedit/gettext/bindtextdom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/bindtextdom.c -------------------------------------------------------------------------------- /setedit/gettext/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/config.h -------------------------------------------------------------------------------- /setedit/gettext/dcgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/dcgettext.c -------------------------------------------------------------------------------- /setedit/gettext/dcigettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/dcigettext.c -------------------------------------------------------------------------------- /setedit/gettext/dcngettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/dcngettext.c -------------------------------------------------------------------------------- /setedit/gettext/dgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/dgettext.c -------------------------------------------------------------------------------- /setedit/gettext/djgpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/djgpp.h -------------------------------------------------------------------------------- /setedit/gettext/dngettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/dngettext.c -------------------------------------------------------------------------------- /setedit/gettext/explodename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/explodename.c -------------------------------------------------------------------------------- /setedit/gettext/finddomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/finddomain.c -------------------------------------------------------------------------------- /setedit/gettext/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/gettext.c -------------------------------------------------------------------------------- /setedit/gettext/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/gettext.h -------------------------------------------------------------------------------- /setedit/gettext/gettextP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/gettextP.h -------------------------------------------------------------------------------- /setedit/gettext/hash-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/hash-string.h -------------------------------------------------------------------------------- /setedit/gettext/intl-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/intl-compat.c -------------------------------------------------------------------------------- /setedit/gettext/l10nflist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/l10nflist.c -------------------------------------------------------------------------------- /setedit/gettext/libgettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/libgettext.h -------------------------------------------------------------------------------- /setedit/gettext/libgnuintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/libgnuintl.h -------------------------------------------------------------------------------- /setedit/gettext/loadinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/loadinfo.h -------------------------------------------------------------------------------- /setedit/gettext/loadmsgcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/loadmsgcat.c -------------------------------------------------------------------------------- /setedit/gettext/localcharset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/localcharset.c -------------------------------------------------------------------------------- /setedit/gettext/localealias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/localealias.c -------------------------------------------------------------------------------- /setedit/gettext/ngettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/ngettext.c -------------------------------------------------------------------------------- /setedit/gettext/plural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/plural.c -------------------------------------------------------------------------------- /setedit/gettext/plural.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/plural.y -------------------------------------------------------------------------------- /setedit/gettext/textdomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/gettext/textdomain.c -------------------------------------------------------------------------------- /setedit/holidays/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | 3 | -------------------------------------------------------------------------------- /setedit/holidays/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/Makefile.in -------------------------------------------------------------------------------- /setedit/holidays/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/README -------------------------------------------------------------------------------- /setedit/holidays/argentina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/argentina.c -------------------------------------------------------------------------------- /setedit/holidays/datetools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/datetools.c -------------------------------------------------------------------------------- /setedit/holidays/datetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/datetools.h -------------------------------------------------------------------------------- /setedit/holidays/defholidays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/defholidays.c -------------------------------------------------------------------------------- /setedit/holidays/deutschland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/deutschland.c -------------------------------------------------------------------------------- /setedit/holidays/holidays.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/holidays.conf -------------------------------------------------------------------------------- /setedit/holidays/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/test.c -------------------------------------------------------------------------------- /setedit/holidays/test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/holidays/test.mak -------------------------------------------------------------------------------- /setedit/include/.gitignore: -------------------------------------------------------------------------------- 1 | configed.h 2 | -------------------------------------------------------------------------------- /setedit/include/bufun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/bufun.h -------------------------------------------------------------------------------- /setedit/include/ced_clas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ced_clas.h -------------------------------------------------------------------------------- /setedit/include/ced_coma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ced_coma.h -------------------------------------------------------------------------------- /setedit/include/ced_exte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ced_exte.h -------------------------------------------------------------------------------- /setedit/include/ced_inte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ced_inte.h -------------------------------------------------------------------------------- /setedit/include/ced_pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ced_pcre.h -------------------------------------------------------------------------------- /setedit/include/ceditint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ceditint.h -------------------------------------------------------------------------------- /setedit/include/ceditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ceditor.h -------------------------------------------------------------------------------- /setedit/include/completi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/completi.h -------------------------------------------------------------------------------- /setedit/include/edmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/edmsg.h -------------------------------------------------------------------------------- /setedit/include/edspecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/edspecs.h -------------------------------------------------------------------------------- /setedit/include/gzfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/gzfiles.h -------------------------------------------------------------------------------- /setedit/include/keytrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/keytrans.h -------------------------------------------------------------------------------- /setedit/include/loadkbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/loadkbin.h -------------------------------------------------------------------------------- /setedit/include/loadshl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/loadshl.h -------------------------------------------------------------------------------- /setedit/include/pathtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/pathtool.h -------------------------------------------------------------------------------- /setedit/include/pmcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/pmcoll.h -------------------------------------------------------------------------------- /setedit/include/runprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/runprog.h -------------------------------------------------------------------------------- /setedit/include/sdginter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/sdginter.h -------------------------------------------------------------------------------- /setedit/include/setconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/setconst.h -------------------------------------------------------------------------------- /setedit/include/sindicat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/sindicat.h -------------------------------------------------------------------------------- /setedit/include/slpinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/slpinter.h -------------------------------------------------------------------------------- /setedit/include/splinman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/splinman.h -------------------------------------------------------------------------------- /setedit/include/ssyntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ssyntax.h -------------------------------------------------------------------------------- /setedit/include/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/tags.h -------------------------------------------------------------------------------- /setedit/include/tvsetuti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/tvsetuti.h -------------------------------------------------------------------------------- /setedit/include/ucdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/ucdefs.h -------------------------------------------------------------------------------- /setedit/include/vername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/include/vername.h -------------------------------------------------------------------------------- /setedit/infview/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/change.log -------------------------------------------------------------------------------- /setedit/infview/include/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/inf.h -------------------------------------------------------------------------------- /setedit/infview/include/infalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/infalone.h -------------------------------------------------------------------------------- /setedit/infview/include/infbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/infbase.h -------------------------------------------------------------------------------- /setedit/infview/include/infbaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/infbaser.h -------------------------------------------------------------------------------- /setedit/infview/include/infr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/infr.h -------------------------------------------------------------------------------- /setedit/infview/include/manview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/include/manview.h -------------------------------------------------------------------------------- /setedit/infview/inf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/inf.cc -------------------------------------------------------------------------------- /setedit/infview/infbase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/infbase.cc -------------------------------------------------------------------------------- /setedit/infview/infdummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/infdummy.cc -------------------------------------------------------------------------------- /setedit/infview/infmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/infmain.cc -------------------------------------------------------------------------------- /setedit/infview/infmenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/infmenu.cc -------------------------------------------------------------------------------- /setedit/infview/manview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/manview.cc -------------------------------------------------------------------------------- /setedit/infview/names/nhiscoll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/names/nhiscoll.cc -------------------------------------------------------------------------------- /setedit/infview/names/ninfview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/names/ninfview.cc -------------------------------------------------------------------------------- /setedit/infview/names/ninfwind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/names/ninfwind.cc -------------------------------------------------------------------------------- /setedit/infview/names/nmanwind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/names/nmanwind.cc -------------------------------------------------------------------------------- /setedit/infview/streams/sinf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/streams/sinf.cc -------------------------------------------------------------------------------- /setedit/infview/streams/sman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/infview/streams/sman.cc -------------------------------------------------------------------------------- /setedit/infview/version.txt: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /setedit/install/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /setedit/install/create.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/install/create.pl -------------------------------------------------------------------------------- /setedit/install/datafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/install/datafile.c -------------------------------------------------------------------------------- /setedit/install/install.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/install/install.cc -------------------------------------------------------------------------------- /setedit/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/install/readme.txt -------------------------------------------------------------------------------- /setedit/internac/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/.gitignore -------------------------------------------------------------------------------- /setedit/internac/colors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/colors.cc -------------------------------------------------------------------------------- /setedit/internac/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/de.po -------------------------------------------------------------------------------- /setedit/internac/emptymsg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/emptymsg.cc -------------------------------------------------------------------------------- /setedit/internac/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/es.po -------------------------------------------------------------------------------- /setedit/internac/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/fix.c -------------------------------------------------------------------------------- /setedit/internac/fix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/fix.pl -------------------------------------------------------------------------------- /setedit/internac/getcolors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/getcolors.cc -------------------------------------------------------------------------------- /setedit/internac/getids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/getids.cc -------------------------------------------------------------------------------- /setedit/internac/gnumake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/gnumake.in -------------------------------------------------------------------------------- /setedit/internac/h_de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/h_de.po -------------------------------------------------------------------------------- /setedit/internac/h_es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/h_es.po -------------------------------------------------------------------------------- /setedit/internac/makelist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/makelist.pl -------------------------------------------------------------------------------- /setedit/internac/utod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/internac/utod.pl -------------------------------------------------------------------------------- /setedit/libbzip2/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /setedit/libbzip2/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/Makefile.bcc -------------------------------------------------------------------------------- /setedit/libbzip2/Makefile.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/Makefile.nmk -------------------------------------------------------------------------------- /setedit/libbzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/blocksort.c -------------------------------------------------------------------------------- /setedit/libbzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/bzlib.c -------------------------------------------------------------------------------- /setedit/libbzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/bzlib.h -------------------------------------------------------------------------------- /setedit/libbzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/bzlib_private.h -------------------------------------------------------------------------------- /setedit/libbzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/compress.c -------------------------------------------------------------------------------- /setedit/libbzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/crctable.c -------------------------------------------------------------------------------- /setedit/libbzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/decompress.c -------------------------------------------------------------------------------- /setedit/libbzip2/gnumake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/gnumake.in -------------------------------------------------------------------------------- /setedit/libbzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/huffman.c -------------------------------------------------------------------------------- /setedit/libbzip2/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/license -------------------------------------------------------------------------------- /setedit/libbzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/randtable.c -------------------------------------------------------------------------------- /setedit/libbzip2/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libbzip2/readme -------------------------------------------------------------------------------- /setedit/libpcre/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/.gitignore -------------------------------------------------------------------------------- /setedit/libpcre/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/Makefile.bcc -------------------------------------------------------------------------------- /setedit/libpcre/Makefile.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/Makefile.nmk -------------------------------------------------------------------------------- /setedit/libpcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/README -------------------------------------------------------------------------------- /setedit/libpcre/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/dftables.c -------------------------------------------------------------------------------- /setedit/libpcre/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/get.c -------------------------------------------------------------------------------- /setedit/libpcre/gnumake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/gnumake.in -------------------------------------------------------------------------------- /setedit/libpcre/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/internal.h -------------------------------------------------------------------------------- /setedit/libpcre/licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/licence -------------------------------------------------------------------------------- /setedit/libpcre/maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/maketables.c -------------------------------------------------------------------------------- /setedit/libpcre/pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/pcre.c -------------------------------------------------------------------------------- /setedit/libpcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/pcre.h -------------------------------------------------------------------------------- /setedit/libpcre/study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libpcre/study.c -------------------------------------------------------------------------------- /setedit/librhuti/abstorel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/abstorel.cc -------------------------------------------------------------------------------- /setedit/librhuti/back2sl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/back2sl.cc -------------------------------------------------------------------------------- /setedit/librhuti/basename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/basename.cc -------------------------------------------------------------------------------- /setedit/librhuti/expvar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/expvar.cc -------------------------------------------------------------------------------- /setedit/librhuti/fexpand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/fexpand.cc -------------------------------------------------------------------------------- /setedit/librhuti/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/io.cc -------------------------------------------------------------------------------- /setedit/librhuti/rhutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/rhutils.h -------------------------------------------------------------------------------- /setedit/librhuti/specs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/specs.cc -------------------------------------------------------------------------------- /setedit/librhuti/splitfn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/splitfn.cc -------------------------------------------------------------------------------- /setedit/librhuti/stricat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/stricat.cc -------------------------------------------------------------------------------- /setedit/librhuti/stridown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/stridown.cc -------------------------------------------------------------------------------- /setedit/librhuti/stridup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/stridup.cc -------------------------------------------------------------------------------- /setedit/librhuti/strifree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/librhuti/strifree.cc -------------------------------------------------------------------------------- /setedit/libz/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | 3 | -------------------------------------------------------------------------------- /setedit/libz/Makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/Makefile.bcc -------------------------------------------------------------------------------- /setedit/libz/Makefile.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/Makefile.nmk -------------------------------------------------------------------------------- /setedit/libz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/README -------------------------------------------------------------------------------- /setedit/libz/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/adler32.c -------------------------------------------------------------------------------- /setedit/libz/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/compress.c -------------------------------------------------------------------------------- /setedit/libz/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/crc32.c -------------------------------------------------------------------------------- /setedit/libz/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/deflate.c -------------------------------------------------------------------------------- /setedit/libz/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/deflate.h -------------------------------------------------------------------------------- /setedit/libz/gnumake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/gnumake.in -------------------------------------------------------------------------------- /setedit/libz/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/gzio.c -------------------------------------------------------------------------------- /setedit/libz/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infblock.c -------------------------------------------------------------------------------- /setedit/libz/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infblock.h -------------------------------------------------------------------------------- /setedit/libz/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infcodes.c -------------------------------------------------------------------------------- /setedit/libz/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infcodes.h -------------------------------------------------------------------------------- /setedit/libz/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inffast.c -------------------------------------------------------------------------------- /setedit/libz/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inffast.h -------------------------------------------------------------------------------- /setedit/libz/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inffixed.h -------------------------------------------------------------------------------- /setedit/libz/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inflate.c -------------------------------------------------------------------------------- /setedit/libz/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inftrees.c -------------------------------------------------------------------------------- /setedit/libz/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/inftrees.h -------------------------------------------------------------------------------- /setedit/libz/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infutil.c -------------------------------------------------------------------------------- /setedit/libz/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/infutil.h -------------------------------------------------------------------------------- /setedit/libz/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/trees.c -------------------------------------------------------------------------------- /setedit/libz/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/trees.h -------------------------------------------------------------------------------- /setedit/libz/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/uncompr.c -------------------------------------------------------------------------------- /setedit/libz/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/zconf.h -------------------------------------------------------------------------------- /setedit/libz/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/zlib.h -------------------------------------------------------------------------------- /setedit/libz/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/zutil.c -------------------------------------------------------------------------------- /setedit/libz/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/libz/zutil.h -------------------------------------------------------------------------------- /setedit/mainsrc/accehtml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/accehtml.cc -------------------------------------------------------------------------------- /setedit/mainsrc/bufun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/bufun.cc -------------------------------------------------------------------------------- /setedit/mainsrc/ceditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/ceditor.cc -------------------------------------------------------------------------------- /setedit/mainsrc/completi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/completi.cc -------------------------------------------------------------------------------- /setedit/mainsrc/deedidia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/deedidia.cc -------------------------------------------------------------------------------- /setedit/mainsrc/doedidia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/doedidia.cc -------------------------------------------------------------------------------- /setedit/mainsrc/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/dumpfile.cc -------------------------------------------------------------------------------- /setedit/mainsrc/edconst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/edconst.cc -------------------------------------------------------------------------------- /setedit/mainsrc/editorfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/editorfo.cc -------------------------------------------------------------------------------- /setedit/mainsrc/editwind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/editwind.cc -------------------------------------------------------------------------------- /setedit/mainsrc/edspecs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/edspecs.cc -------------------------------------------------------------------------------- /setedit/mainsrc/fstrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/fstrcmp.c -------------------------------------------------------------------------------- /setedit/mainsrc/gzfiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/gzfiles.cc -------------------------------------------------------------------------------- /setedit/mainsrc/keytrans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/keytrans.cc -------------------------------------------------------------------------------- /setedit/mainsrc/linelen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/linelen.cc -------------------------------------------------------------------------------- /setedit/mainsrc/loaddefl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/loaddefl.cc -------------------------------------------------------------------------------- /setedit/mainsrc/loadfunc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/loadfunc.cc -------------------------------------------------------------------------------- /setedit/mainsrc/loadshl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/loadshl.cc -------------------------------------------------------------------------------- /setedit/mainsrc/loadusew.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/loadusew.cc -------------------------------------------------------------------------------- /setedit/mainsrc/macrocom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/macrocom.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pathtool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pathtool.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pclipper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pclipper.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pmacros.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pmacros.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pperl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pperl.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pphp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pphp.cc -------------------------------------------------------------------------------- /setedit/mainsrc/ppython.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/ppython.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pvarious.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pvarious.cc -------------------------------------------------------------------------------- /setedit/mainsrc/pvhdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/pvhdl.cc -------------------------------------------------------------------------------- /setedit/mainsrc/rhideint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/rhideint.cc -------------------------------------------------------------------------------- /setedit/mainsrc/sdginter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/sdginter.cc -------------------------------------------------------------------------------- /setedit/mainsrc/search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/search.cc -------------------------------------------------------------------------------- /setedit/mainsrc/slpinter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/slpinter.cc -------------------------------------------------------------------------------- /setedit/mainsrc/splinman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/splinman.cc -------------------------------------------------------------------------------- /setedit/mainsrc/ssyntax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/ssyntax.cc -------------------------------------------------------------------------------- /setedit/mainsrc/tags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/tags.cc -------------------------------------------------------------------------------- /setedit/mainsrc/tsindica.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mainsrc/tsindica.cc -------------------------------------------------------------------------------- /setedit/makes/.gitignore: -------------------------------------------------------------------------------- 1 | *.mak 2 | rhide.env 3 | ed.tags 4 | mapita 5 | 6 | -------------------------------------------------------------------------------- /setedit/makes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/Makefile -------------------------------------------------------------------------------- /setedit/makes/allegro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/allegro.cfg -------------------------------------------------------------------------------- /setedit/makes/amp3.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/amp3.gpr -------------------------------------------------------------------------------- /setedit/makes/amp3.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/amp3.imk -------------------------------------------------------------------------------- /setedit/makes/amp3.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/amp3.umk -------------------------------------------------------------------------------- /setedit/makes/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/blink.c -------------------------------------------------------------------------------- /setedit/makes/common.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/common.bmk -------------------------------------------------------------------------------- /setedit/makes/common.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/common.imk -------------------------------------------------------------------------------- /setedit/makes/common.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/common.nmk -------------------------------------------------------------------------------- /setedit/makes/config.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/config.bcc -------------------------------------------------------------------------------- /setedit/makes/config.nmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/config.nmk -------------------------------------------------------------------------------- /setedit/makes/djgpp/compinf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/djgpp/compinf.pl -------------------------------------------------------------------------------- /setedit/makes/djgpp/compress.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/djgpp/compress.bat -------------------------------------------------------------------------------- /setedit/makes/djgpp/compress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/djgpp/compress.pl -------------------------------------------------------------------------------- /setedit/makes/djgppenv.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/djgppenv.env -------------------------------------------------------------------------------- /setedit/makes/easydiag.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/easydiag.gpr -------------------------------------------------------------------------------- /setedit/makes/easydiag.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/easydiag.imk -------------------------------------------------------------------------------- /setedit/makes/easydiag.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/easydiag.umk -------------------------------------------------------------------------------- /setedit/makes/editor.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/editor.bmk -------------------------------------------------------------------------------- /setedit/makes/editor.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/editor.gpr -------------------------------------------------------------------------------- /setedit/makes/editor.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/editor.imk -------------------------------------------------------------------------------- /setedit/makes/editor.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/editor.mkf -------------------------------------------------------------------------------- /setedit/makes/editor.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/editor.umk -------------------------------------------------------------------------------- /setedit/makes/extra.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/extra.gpr -------------------------------------------------------------------------------- /setedit/makes/extra.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/extra.imk -------------------------------------------------------------------------------- /setedit/makes/extra.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/extra.umk -------------------------------------------------------------------------------- /setedit/makes/extrimk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/extrimk.cc -------------------------------------------------------------------------------- /setedit/makes/genimk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/genimk.cc -------------------------------------------------------------------------------- /setedit/makes/includer.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/includer.bmk -------------------------------------------------------------------------------- /setedit/makes/includer.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/includer.imk -------------------------------------------------------------------------------- /setedit/makes/inffd.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/inffd.gpr -------------------------------------------------------------------------------- /setedit/makes/inffd.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/inffd.imk -------------------------------------------------------------------------------- /setedit/makes/inffd.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/inffd.umk -------------------------------------------------------------------------------- /setedit/makes/infview.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/infview.bmk -------------------------------------------------------------------------------- /setedit/makes/infview.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/infview.gpr -------------------------------------------------------------------------------- /setedit/makes/infview.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/infview.imk -------------------------------------------------------------------------------- /setedit/makes/infview.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/infview.mkf -------------------------------------------------------------------------------- /setedit/makes/infview.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/infview.umk -------------------------------------------------------------------------------- /setedit/makes/install.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/install.gpr -------------------------------------------------------------------------------- /setedit/makes/install.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/install.imk -------------------------------------------------------------------------------- /setedit/makes/install.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/install.mkf -------------------------------------------------------------------------------- /setedit/makes/install.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/install.umk -------------------------------------------------------------------------------- /setedit/makes/librhuti.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/librhuti.gpr -------------------------------------------------------------------------------- /setedit/makes/librhuti.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/librhuti.imk -------------------------------------------------------------------------------- /setedit/makes/librhuti.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/librhuti.umk -------------------------------------------------------------------------------- /setedit/makes/libset.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/libset.gpr -------------------------------------------------------------------------------- /setedit/makes/libset.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/libset.imk -------------------------------------------------------------------------------- /setedit/makes/libset.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/libset.mkf -------------------------------------------------------------------------------- /setedit/makes/libset.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/libset.umk -------------------------------------------------------------------------------- /setedit/makes/line.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/line.par -------------------------------------------------------------------------------- /setedit/makes/linux.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/linux.env -------------------------------------------------------------------------------- /setedit/makes/linux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/linux/.gitignore -------------------------------------------------------------------------------- /setedit/makes/linux/compinf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/linux/compinf.pl -------------------------------------------------------------------------------- /setedit/makes/linux/compress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/linux/compress.pl -------------------------------------------------------------------------------- /setedit/makes/linux_set.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/linux_set.env -------------------------------------------------------------------------------- /setedit/makes/lista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/lista -------------------------------------------------------------------------------- /setedit/makes/listaxtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/listaxtr -------------------------------------------------------------------------------- /setedit/makes/mlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/mlink.c -------------------------------------------------------------------------------- /setedit/makes/obj/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/obj/delete.me -------------------------------------------------------------------------------- /setedit/makes/objinf/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/objinf/delete.me -------------------------------------------------------------------------------- /setedit/makes/objlib/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/objlib/delete.me -------------------------------------------------------------------------------- /setedit/makes/objsdg/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/objsdg/delete.me -------------------------------------------------------------------------------- /setedit/makes/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/r.bat -------------------------------------------------------------------------------- /setedit/makes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/readme.txt -------------------------------------------------------------------------------- /setedit/makes/sdgcline.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/sdgcline.gpr -------------------------------------------------------------------------------- /setedit/makes/sdgcline.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/sdgcline.imk -------------------------------------------------------------------------------- /setedit/makes/sdgcline.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/sdgcline.mkf -------------------------------------------------------------------------------- /setedit/makes/sdgcline.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/sdgcline.umk -------------------------------------------------------------------------------- /setedit/makes/settv.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/settv.gpr -------------------------------------------------------------------------------- /setedit/makes/settv.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/settv.imk -------------------------------------------------------------------------------- /setedit/makes/settv.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/settv.umk -------------------------------------------------------------------------------- /setedit/makes/testeasy.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/testeasy.gpr -------------------------------------------------------------------------------- /setedit/makes/testeasy.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/testeasy.imk -------------------------------------------------------------------------------- /setedit/makes/testeasy.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/testeasy.mkf -------------------------------------------------------------------------------- /setedit/makes/testeasy.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/testeasy.umk -------------------------------------------------------------------------------- /setedit/makes/tmp/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/tmp/delete.me -------------------------------------------------------------------------------- /setedit/makes/tmp/test.cc: -------------------------------------------------------------------------------- 1 | char *s="$Id$"; 2 | -------------------------------------------------------------------------------- /setedit/makes/try-y.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/try-y.bat -------------------------------------------------------------------------------- /setedit/makes/yamd-off.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/yamd-off.bat -------------------------------------------------------------------------------- /setedit/makes/yamd-on.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/yamd-on.bat -------------------------------------------------------------------------------- /setedit/makes/yamddos.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/makes/yamddos.env -------------------------------------------------------------------------------- /setedit/miscperl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/miscperl.pl -------------------------------------------------------------------------------- /setedit/mp3/ampdiag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/ampdiag.cc -------------------------------------------------------------------------------- /setedit/mp3/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/consts.h -------------------------------------------------------------------------------- /setedit/mp3/intermp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/intermp3.cc -------------------------------------------------------------------------------- /setedit/mp3/intermp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/intermp3.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/.gitignore: -------------------------------------------------------------------------------- 1 | *.mak 2 | rhide.env 3 | -------------------------------------------------------------------------------- /setedit/mp3/libamp/amp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/amp.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/audio.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/audioalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/audioalg.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/audioio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/audioio.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/audiolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/audiolib.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/common.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/common.imk -------------------------------------------------------------------------------- /setedit/mp3/libamp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/config.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/controldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/controldata.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/dump.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/dump.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/formats.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/formats.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/getbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/getbits.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/getbits.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/getdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/getdata.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/getdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/getdata.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/guicontr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/guicontr.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/guicontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/guicontrol.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/huffman.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/huffman.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/layer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/layer2.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/layer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/layer2.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/layer3.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/layer3.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/libamp.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/libamp.gpr -------------------------------------------------------------------------------- /setedit/mp3/libamp/libamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/libamp.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/libamp.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/libamp.imk -------------------------------------------------------------------------------- /setedit/mp3/libamp/libamp.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/libamp.mkf -------------------------------------------------------------------------------- /setedit/mp3/libamp/libamp.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/libamp.umk -------------------------------------------------------------------------------- /setedit/mp3/libamp/misc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/misc2.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/misc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/misc2.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/obj/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/obj/delete.me -------------------------------------------------------------------------------- /setedit/mp3/libamp/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/position.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/position.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/proto.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/readme -------------------------------------------------------------------------------- /setedit/mp3/libamp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/readme.txt -------------------------------------------------------------------------------- /setedit/mp3/libamp/rtbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/rtbuf.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/rtbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/rtbuf.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/transfor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/transfor.c -------------------------------------------------------------------------------- /setedit/mp3/libamp/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/transform.h -------------------------------------------------------------------------------- /setedit/mp3/libamp/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/libamp/util.c -------------------------------------------------------------------------------- /setedit/mp3/mp3list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mp3list.cc -------------------------------------------------------------------------------- /setedit/mp3/mp3play.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mp3play.cc -------------------------------------------------------------------------------- /setedit/mp3/mp3play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mp3play.h -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/.gitignore: -------------------------------------------------------------------------------- 1 | *.mak 2 | rhide.env 3 | 4 | -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/bitwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/bitwindow.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/common.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/common.imk -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/fileinput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/fileinput.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/fileplayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/fileplayer.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/filter.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/filter_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/filter_2.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/httpinput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/httpinput.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegsnd.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegsnd.gpr -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegsnd.imk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegsnd.imk -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegsnd.mkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegsnd.mkf -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegsnd.umk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegsnd.umk -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegsound.h -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegtable.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegtoraw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegtoraw.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpegwtoraw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpegwtoraw.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpg_locals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpg_locals.h -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpglayr1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpglayr1.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpglayr2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpglayr2.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/mpglayr3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/mpglayr3.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/obj/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/obj/delete.me -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/osdisk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/osdisk.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/rawplayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/rawplayer.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/rawtofile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/rawtofile.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/rawtowav.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/rawtowav.cc -------------------------------------------------------------------------------- /setedit/mp3/mpegsound/wavetoraw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/mp3/mpegsound/wavetoraw.cc -------------------------------------------------------------------------------- /setedit/names/nceditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/nceditor.cc -------------------------------------------------------------------------------- /setedit/names/ndskwasc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwasc.cc -------------------------------------------------------------------------------- /setedit/names/ndskwcal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwcal.cc -------------------------------------------------------------------------------- /setedit/names/ndskwcli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwcli.cc -------------------------------------------------------------------------------- /setedit/names/ndskwclo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwclo.cc -------------------------------------------------------------------------------- /setedit/names/ndskwedi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwedi.cc -------------------------------------------------------------------------------- /setedit/names/ndskwhel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwhel.cc -------------------------------------------------------------------------------- /setedit/names/ndskwman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwman.cc -------------------------------------------------------------------------------- /setedit/names/ndskwmes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwmes.cc -------------------------------------------------------------------------------- /setedit/names/ndskwmp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwmp3.cc -------------------------------------------------------------------------------- /setedit/names/ndskwprj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ndskwprj.cc -------------------------------------------------------------------------------- /setedit/names/neditwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/neditwin.cc -------------------------------------------------------------------------------- /setedit/names/nfileedi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/nfileedi.cc -------------------------------------------------------------------------------- /setedit/names/nsindica.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/nsindica.cc -------------------------------------------------------------------------------- /setedit/names/ntedcol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/names/ntedcol.cc -------------------------------------------------------------------------------- /setedit/policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/policy.txt -------------------------------------------------------------------------------- /setedit/redhat/.gitignore: -------------------------------------------------------------------------------- 1 | *.spec 2 | -------------------------------------------------------------------------------- /setedit/redhat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/README -------------------------------------------------------------------------------- /setedit/redhat/config-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/config-rpm.sh -------------------------------------------------------------------------------- /setedit/redhat/create-all-rpms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/create-all-rpms.sh -------------------------------------------------------------------------------- /setedit/redhat/create-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/create-dirs.sh -------------------------------------------------------------------------------- /setedit/redhat/create-rpms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/create-rpms.sh -------------------------------------------------------------------------------- /setedit/redhat/setedit.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/redhat/setedit.spec.in -------------------------------------------------------------------------------- /setedit/scrnsave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/Makefile -------------------------------------------------------------------------------- /setedit/scrnsave/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/copying -------------------------------------------------------------------------------- /setedit/scrnsave/extrscsv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/extrscsv.txt -------------------------------------------------------------------------------- /setedit/scrnsave/fakealle/varios1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/fakealle/varios1.c -------------------------------------------------------------------------------- /setedit/scrnsave/how-to.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/how-to.txt -------------------------------------------------------------------------------- /setedit/scrnsave/plasma1/ps1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma1/ps1.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasma1/ps1.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma1/ps1.gpr -------------------------------------------------------------------------------- /setedit/scrnsave/plasma1/ps1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma1/ps1.mak -------------------------------------------------------------------------------- /setedit/scrnsave/plasma2/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma2/ps2.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasma2/ps2.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma2/ps2.gpr -------------------------------------------------------------------------------- /setedit/scrnsave/plasma2/ps2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma2/ps2.mak -------------------------------------------------------------------------------- /setedit/scrnsave/plasma3/ps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma3/ps3.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasma3/ps3.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma3/ps3.gpr -------------------------------------------------------------------------------- /setedit/scrnsave/plasma3/ps3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma3/ps3.mak -------------------------------------------------------------------------------- /setedit/scrnsave/plasma4/ps4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma4/ps4.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasma4/ps4.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma4/ps4.gpr -------------------------------------------------------------------------------- /setedit/scrnsave/plasma4/ps4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasma4/ps4.mak -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/lissa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/lissa.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/math1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/math1.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/math2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/math2.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/math4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/math4.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/mixsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/mixsurf.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/mksurf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/mksurf1.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/mksurf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/mksurf2.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/mksurf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/mksurf4.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/palette.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/plasa1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/plasa1.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/plasa2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/plasa2.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/plasa2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/plasa2g.c -------------------------------------------------------------------------------- /setedit/scrnsave/plasmlib/plasa3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/plasmlib/plasa3.c -------------------------------------------------------------------------------- /setedit/scrnsave/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/scrnsave/readme.txt -------------------------------------------------------------------------------- /setedit/sdg/bufun2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/bufun2.cc -------------------------------------------------------------------------------- /setedit/sdg/edspecs2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/edspecs2.cc -------------------------------------------------------------------------------- /setedit/sdg/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/gettext.c -------------------------------------------------------------------------------- /setedit/sdg/html.frt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/html.frt -------------------------------------------------------------------------------- /setedit/sdg/include/mli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mli.h -------------------------------------------------------------------------------- /setedit/sdg/include/mliabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mliabase.h -------------------------------------------------------------------------------- /setedit/sdg/include/mliasimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mliasimp.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlibase.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlicsdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlicsdg.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlieditd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlieditd.h -------------------------------------------------------------------------------- /setedit/sdg/include/mliedito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mliedito.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlisdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlisdg.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlisdgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlisdgi.h -------------------------------------------------------------------------------- /setedit/sdg/include/mlivar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/mlivar.h -------------------------------------------------------------------------------- /setedit/sdg/include/txhgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/include/txhgen.h -------------------------------------------------------------------------------- /setedit/sdg/mli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mli.cc -------------------------------------------------------------------------------- /setedit/sdg/mliasimp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mliasimp.cc -------------------------------------------------------------------------------- /setedit/sdg/mlicsdg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mlicsdg.cc -------------------------------------------------------------------------------- /setedit/sdg/mliediti.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mliediti.cc -------------------------------------------------------------------------------- /setedit/sdg/mliedito.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mliedito.cc -------------------------------------------------------------------------------- /setedit/sdg/mlisdg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/mlisdg.cc -------------------------------------------------------------------------------- /setedit/sdg/multi.frt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/multi.frt -------------------------------------------------------------------------------- /setedit/sdg/sdg.his: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/sdg.his -------------------------------------------------------------------------------- /setedit/sdg/tex.frt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/tex.frt -------------------------------------------------------------------------------- /setedit/sdg/txhgen-i.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhgen-i.htm -------------------------------------------------------------------------------- /setedit/sdg/txhgen-i.txi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhgen-i.txi -------------------------------------------------------------------------------- /setedit/sdg/txhgen-i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhgen-i.txt -------------------------------------------------------------------------------- /setedit/sdg/txhgen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhgen.cc -------------------------------------------------------------------------------- /setedit/sdg/txhgen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhgen.txt -------------------------------------------------------------------------------- /setedit/sdg/txhmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/sdg/txhmain.cc -------------------------------------------------------------------------------- /setedit/set_insed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/set_insed -------------------------------------------------------------------------------- /setedit/setedit/advice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/advice.cc -------------------------------------------------------------------------------- /setedit/setedit/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/ascii.cc -------------------------------------------------------------------------------- /setedit/setedit/boardmix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/boardmix.cc -------------------------------------------------------------------------------- /setedit/setedit/calendar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/calendar.cc -------------------------------------------------------------------------------- /setedit/setedit/codepage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/codepage.cc -------------------------------------------------------------------------------- /setedit/setedit/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/debug.cc -------------------------------------------------------------------------------- /setedit/setedit/dskascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskascii.cc -------------------------------------------------------------------------------- /setedit/setedit/dskcalen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskcalen.cc -------------------------------------------------------------------------------- /setedit/setedit/dskclip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskclip.cc -------------------------------------------------------------------------------- /setedit/setedit/dskclose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskclose.cc -------------------------------------------------------------------------------- /setedit/setedit/dskedito.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskedito.cc -------------------------------------------------------------------------------- /setedit/setedit/dskhelp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskhelp.cc -------------------------------------------------------------------------------- /setedit/setedit/dskman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskman.cc -------------------------------------------------------------------------------- /setedit/setedit/dskmessa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskmessa.cc -------------------------------------------------------------------------------- /setedit/setedit/dskmp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskmp3.cc -------------------------------------------------------------------------------- /setedit/setedit/dskwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dskwin.cc -------------------------------------------------------------------------------- /setedit/setedit/dstfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/dstfile.cc -------------------------------------------------------------------------------- /setedit/setedit/edcolor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edcolor.cc -------------------------------------------------------------------------------- /setedit/setedit/edfonts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edfonts.cc -------------------------------------------------------------------------------- /setedit/setedit/editdiag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/editdiag.cc -------------------------------------------------------------------------------- /setedit/setedit/editmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/editmain.cc -------------------------------------------------------------------------------- /setedit/setedit/editmenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/editmenu.cc -------------------------------------------------------------------------------- /setedit/setedit/editpale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/editpale.cc -------------------------------------------------------------------------------- /setedit/setedit/edkeys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edkeys.cc -------------------------------------------------------------------------------- /setedit/setedit/edmsg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edmsg.cc -------------------------------------------------------------------------------- /setedit/setedit/edprefs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edprefs.cc -------------------------------------------------------------------------------- /setedit/setedit/edprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edprint.cc -------------------------------------------------------------------------------- /setedit/setedit/edprj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/edprj.cc -------------------------------------------------------------------------------- /setedit/setedit/getctxhl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/getctxhl.cc -------------------------------------------------------------------------------- /setedit/setedit/holidays.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/holidays.cc -------------------------------------------------------------------------------- /setedit/setedit/include/advice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/advice.h -------------------------------------------------------------------------------- /setedit/setedit/include/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/ascii.h -------------------------------------------------------------------------------- /setedit/setedit/include/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/calendar.h -------------------------------------------------------------------------------- /setedit/setedit/include/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/codepage.h -------------------------------------------------------------------------------- /setedit/setedit/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/debug.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskascii.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskcalen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskcalen.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskclip.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskclose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskclose.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskedito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskedito.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskhelp.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskman.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskmessa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskmessa.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskmp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskmp3.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskprj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskprj.h -------------------------------------------------------------------------------- /setedit/setedit/include/dskwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/dskwin.h -------------------------------------------------------------------------------- /setedit/setedit/include/edcollec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/edcollec.h -------------------------------------------------------------------------------- /setedit/setedit/include/editcoma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/editcoma.h -------------------------------------------------------------------------------- /setedit/setedit/include/edprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/edprint.h -------------------------------------------------------------------------------- /setedit/setedit/include/loadcle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/loadcle.h -------------------------------------------------------------------------------- /setedit/setedit/include/loadnobkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/loadnobkp.h -------------------------------------------------------------------------------- /setedit/setedit/include/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/pal.h -------------------------------------------------------------------------------- /setedit/setedit/include/palbcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/palbcc.h -------------------------------------------------------------------------------- /setedit/setedit/include/palconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/palconv.h -------------------------------------------------------------------------------- /setedit/setedit/include/paldjd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/paldjd.h -------------------------------------------------------------------------------- /setedit/setedit/include/palfte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/palfte.h -------------------------------------------------------------------------------- /setedit/setedit/include/palmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/palmc.h -------------------------------------------------------------------------------- /setedit/setedit/include/pathlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/pathlist.h -------------------------------------------------------------------------------- /setedit/setedit/include/setapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/setapp.h -------------------------------------------------------------------------------- /setedit/setedit/include/tpaltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/include/tpaltext.h -------------------------------------------------------------------------------- /setedit/setedit/intgrep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/intgrep.cc -------------------------------------------------------------------------------- /setedit/setedit/loadcle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/loadcle.cc -------------------------------------------------------------------------------- /setedit/setedit/loadnobkp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/loadnobkp.cc -------------------------------------------------------------------------------- /setedit/setedit/menuload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/menuload.cc -------------------------------------------------------------------------------- /setedit/setedit/msignal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/msignal.cc -------------------------------------------------------------------------------- /setedit/setedit/pathlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/pathlist.cc -------------------------------------------------------------------------------- /setedit/setedit/runprog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/runprog.cc -------------------------------------------------------------------------------- /setedit/setedit/scresave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/scresave.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskasci.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskasci.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskcale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskcale.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskclip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskclip.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskclos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskclos.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskedit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskedit.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskhelp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskhelp.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskman.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskmess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskmess.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskmp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskmp3.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sdskprj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sdskprj.cc -------------------------------------------------------------------------------- /setedit/setedit/streams/sedcolle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/streams/sedcolle.cc -------------------------------------------------------------------------------- /setedit/setedit/tedcolle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/tedcolle.cc -------------------------------------------------------------------------------- /setedit/setedit/tips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/tips.cc -------------------------------------------------------------------------------- /setedit/setedit/tpaltext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/tpaltext.cc -------------------------------------------------------------------------------- /setedit/setedit/winlistd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/setedit/winlistd.cc -------------------------------------------------------------------------------- /setedit/settvuti/diaghelp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/diaghelp.cc -------------------------------------------------------------------------------- /setedit/settvuti/dktclock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/dktclock.cc -------------------------------------------------------------------------------- /setedit/settvuti/fileopen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/fileopen.cc -------------------------------------------------------------------------------- /setedit/settvuti/fiopeaid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/fiopeaid.cc -------------------------------------------------------------------------------- /setedit/settvuti/include/diaghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/diaghelp.h -------------------------------------------------------------------------------- /setedit/settvuti/include/dktclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/dktclock.h -------------------------------------------------------------------------------- /setedit/settvuti/include/edhists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/edhists.h -------------------------------------------------------------------------------- /setedit/settvuti/include/fileopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/fileopen.h -------------------------------------------------------------------------------- /setedit/settvuti/include/fiopeaid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/fiopeaid.h -------------------------------------------------------------------------------- /setedit/settvuti/include/inputsca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/inputsca.h -------------------------------------------------------------------------------- /setedit/settvuti/include/nostatex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/nostatex.h -------------------------------------------------------------------------------- /setedit/settvuti/include/sarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/sarray.cc -------------------------------------------------------------------------------- /setedit/settvuti/include/sarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/sarray.h -------------------------------------------------------------------------------- /setedit/settvuti/include/setstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/setstack.h -------------------------------------------------------------------------------- /setedit/settvuti/include/settvuti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/settvuti.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tdiagaid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tdiagaid.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tdiagrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tdiagrow.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tinppipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tinppipe.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tnocastc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tnocastc.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tnosostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tnosostr.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tprogbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tprogbar.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tprogdia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tprogdia.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tprogrdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tprogrdi.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tprogres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tprogres.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tstringa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tstringa.h -------------------------------------------------------------------------------- /setedit/settvuti/include/tstrlbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/tstrlbox.h -------------------------------------------------------------------------------- /setedit/settvuti/include/viewplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/include/viewplus.h -------------------------------------------------------------------------------- /setedit/settvuti/inputsca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/inputsca.cc -------------------------------------------------------------------------------- /setedit/settvuti/names/ninputsc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/names/ninputsc.cc -------------------------------------------------------------------------------- /setedit/settvuti/names/nprogbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/names/nprogbar.cc -------------------------------------------------------------------------------- /setedit/settvuti/names/nprogres.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/names/nprogres.cc -------------------------------------------------------------------------------- /setedit/settvuti/nostatex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/nostatex.cc -------------------------------------------------------------------------------- /setedit/settvuti/setstack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/setstack.cc -------------------------------------------------------------------------------- /setedit/settvuti/tdiagaid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tdiagaid.cc -------------------------------------------------------------------------------- /setedit/settvuti/tdiagrow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tdiagrow.cc -------------------------------------------------------------------------------- /setedit/settvuti/tinppipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tinppipe.cc -------------------------------------------------------------------------------- /setedit/settvuti/tnocastc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tnocastc.cc -------------------------------------------------------------------------------- /setedit/settvuti/tnosostr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tnosostr.cc -------------------------------------------------------------------------------- /setedit/settvuti/tprogbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tprogbar.cc -------------------------------------------------------------------------------- /setedit/settvuti/tprogdia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tprogdia.cc -------------------------------------------------------------------------------- /setedit/settvuti/tprogrdi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tprogrdi.cc -------------------------------------------------------------------------------- /setedit/settvuti/tprogres.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tprogres.cc -------------------------------------------------------------------------------- /setedit/settvuti/tstrlbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/tstrlbox.cc -------------------------------------------------------------------------------- /setedit/settvuti/uisarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/uisarray.cc -------------------------------------------------------------------------------- /setedit/settvuti/ussarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/ussarray.cc -------------------------------------------------------------------------------- /setedit/settvuti/viewplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/settvuti/viewplus.cc -------------------------------------------------------------------------------- /setedit/snapshot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/snapshot.pl -------------------------------------------------------------------------------- /setedit/streams/sceditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/streams/sceditor.cc -------------------------------------------------------------------------------- /setedit/streams/sedhelp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/streams/sedhelp.cc -------------------------------------------------------------------------------- /setedit/streams/ssindica.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/streams/ssindica.cc -------------------------------------------------------------------------------- /setedit/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/.gitignore -------------------------------------------------------------------------------- /setedit/tools/TVpo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/TVpo.pl -------------------------------------------------------------------------------- /setedit/tools/applycvs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/applycvs.pl -------------------------------------------------------------------------------- /setedit/tools/cmclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/cmclist.c -------------------------------------------------------------------------------- /setedit/tools/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/conv.cc -------------------------------------------------------------------------------- /setedit/tools/cvssget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/cvssget -------------------------------------------------------------------------------- /setedit/tools/cvssput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/cvssput -------------------------------------------------------------------------------- /setedit/tools/cvssyncget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/cvssyncget.cc -------------------------------------------------------------------------------- /setedit/tools/cvssyncput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/cvssyncput.cc -------------------------------------------------------------------------------- /setedit/tools/kbv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/kbv.c -------------------------------------------------------------------------------- /setedit/tools/lines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/lines.pl -------------------------------------------------------------------------------- /setedit/tools/makediff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/makediff.bat -------------------------------------------------------------------------------- /setedit/tools/makediff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/makediff.pl -------------------------------------------------------------------------------- /setedit/tools/mapa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/mapa.cc -------------------------------------------------------------------------------- /setedit/tools/mft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/mft.c -------------------------------------------------------------------------------- /setedit/tools/mft.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/mft.gpr -------------------------------------------------------------------------------- /setedit/tools/mideline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/mideline.cc -------------------------------------------------------------------------------- /setedit/tools/moverepo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/moverepo.pl -------------------------------------------------------------------------------- /setedit/tools/putcopyr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/putcopyr.pl -------------------------------------------------------------------------------- /setedit/tools/sarge.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/sarge.supp -------------------------------------------------------------------------------- /setedit/tools/symify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/symify.cc -------------------------------------------------------------------------------- /setedit/tools/valgrind.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/valgrind.cmd -------------------------------------------------------------------------------- /setedit/tools/woody.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/tools/woody.supp -------------------------------------------------------------------------------- /setedit/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/update -------------------------------------------------------------------------------- /setedit/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/update.bat -------------------------------------------------------------------------------- /setedit/updaterev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/updaterev.pl -------------------------------------------------------------------------------- /setedit/version.txt: -------------------------------------------------------------------------------- 1 | 0.5.8 2 | -------------------------------------------------------------------------------- /setedit/windos.faq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/windos.faq -------------------------------------------------------------------------------- /setedit/www-site/.gitignore: -------------------------------------------------------------------------------- 1 | tag_imgs 2 | -------------------------------------------------------------------------------- /setedit/www-site/announce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/announce.html -------------------------------------------------------------------------------- /setedit/www-site/change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/change.html -------------------------------------------------------------------------------- /setedit/www-site/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/examples.css -------------------------------------------------------------------------------- /setedit/www-site/iguazu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/iguazu.html -------------------------------------------------------------------------------- /setedit/www-site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/index.html -------------------------------------------------------------------------------- /setedit/www-site/infview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/infview.html -------------------------------------------------------------------------------- /setedit/www-site/my_file1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/my_file1.html -------------------------------------------------------------------------------- /setedit/www-site/my_file2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/my_file2.html -------------------------------------------------------------------------------- /setedit/www-site/my_file3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/my_file3.html -------------------------------------------------------------------------------- /setedit/www-site/pmoreno.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/pmoreno.html -------------------------------------------------------------------------------- /setedit/www-site/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/readme.html -------------------------------------------------------------------------------- /setedit/www-site/readmeinf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/readmeinf.html -------------------------------------------------------------------------------- /setedit/www-site/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/tags.html -------------------------------------------------------------------------------- /setedit/www-site/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/update -------------------------------------------------------------------------------- /setedit/www-site/xterm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/set-soft/setedit/HEAD/setedit/www-site/xterm.html --------------------------------------------------------------------------------