├── BugList.html ├── Change.html ├── LICENCE ├── Link2EiC.README ├── Makefile ├── README ├── README.FIRST ├── config ├── Makefile ├── NormalNodeTargets ├── _LINUX │ └── make.params ├── _SOLARIS │ └── make.params ├── alignment.c ├── genstdio.c ├── make.rules └── makeconfig ├── doc ├── EiC.tex ├── EiCgram.tex ├── FigPageSetup.tex ├── Intro2EiC.tex ├── Library.tex ├── Makefile ├── advanced.tex ├── computer.bib ├── eicpreamble.tex ├── embed.tex ├── grammar.tex ├── headers ├── miniblurb.tex ├── preface.tex ├── preproc.tex ├── tech_doc │ ├── CommandSeq1 │ ├── LL1 │ ├── builtin.doc │ ├── comments │ ├── instructionSet.doc │ ├── modification.notes │ ├── runtime.txt │ ├── src_cutter.c │ └── typesets.doc └── test.tex ├── eic.man ├── eim.man ├── main ├── Makefile ├── README ├── examples │ ├── embedEiC.c │ └── myfile.c └── main.c ├── module ├── Makefile ├── MathStats │ ├── Makefile │ ├── combinatorial.c │ ├── harray.c │ ├── interpolate.c │ ├── mathstats.h │ ├── randg.c │ └── stats.c ├── gnuplot │ ├── Makefile │ ├── README.html │ ├── demo.c │ ├── gplot.h │ └── gplot3.c ├── link2eic │ ├── Makefile │ ├── link2eic.c │ └── link2eic.h └── stdClib │ ├── Makefile │ └── src │ ├── Makefile │ ├── _LINUX │ ├── dirent.h │ ├── fcntl.h │ ├── ioctl.h │ ├── stat.h │ ├── termios.h │ └── time.h │ ├── _SOLARIS │ ├── dirent.h │ ├── fcntl.h │ ├── ioctl.h │ ├── stat.h │ ├── termios.h │ └── time.h │ ├── assert.c │ ├── assert.h │ ├── ctype.c │ ├── ctype.h │ ├── dirent.c │ ├── dirent.h │ ├── eicfftoa.c │ ├── errno.c │ ├── errno.h │ ├── fcntl.c │ ├── float.h │ ├── iso646.h │ ├── itoa.c │ ├── math.c │ ├── math.h │ ├── printf.c │ ├── setjmp.h │ ├── signal.c │ ├── stat.c │ ├── stdClib.c │ ├── stdClib2eic.h │ ├── stdarg.c │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.c │ ├── stdio.h │ ├── stdlib.c │ ├── stdlib.h │ ├── stdliblocal.h │ ├── string.c │ ├── string.h │ ├── strrev.c │ ├── strround.c │ ├── termios.c │ ├── termios.h │ ├── time.c │ ├── time.h │ ├── unistd.c │ └── unistd.h ├── new_main ├── Makefile ├── examples │ └── test-datatypes.c ├── link2eic.c ├── link2eic.h ├── main.c └── volatile.dat ├── override.params ├── project.params ├── src ├── MachSet.h ├── Makefile ├── assertp.h ├── callback.c ├── cdecl.c ├── cdecl.h ├── datastruct.h ├── eic.h ├── eicmod.c ├── eicval.h ├── emitter.c ├── emitter.h ├── error.c ├── error.h ├── func.c ├── func.h ├── global.h ├── interpre.c ├── lexer.c ├── lexer.h ├── main.c ├── metric.h ├── modules.h ├── optomizer.c ├── parser.c ├── parser.h ├── preexpr.c ├── preproc.c ├── preproc.h ├── readline.c ├── reset.c ├── reset.h ├── stab.c ├── stab.h ├── starteic.c ├── starteic.src ├── symbol.c ├── symbol.h ├── symentry.h ├── typemod.c ├── typemod.h ├── typesets.c ├── typesets.h ├── xalloc.h └── ymem.c └── test ├── EiCtests ├── gethashwords.c ├── testAassert.c ├── testAbinary.c ├── testMemErr1.aux ├── testMemErr1.c ├── testMemErr2.aux ├── testMemErr2.c ├── testMemErr2b.aux ├── testMemErr2c.aux ├── testaddressop.c ├── testarray.c ├── testarray2.c ├── testarray3.c ├── testarray4.c ├── testaryptr.c ├── testassign.c ├── testcast.c ├── testcomma.c ├── testcommandline.aux ├── testcommandline.c ├── testcompliant.c ├── testcond.c ├── testconst.c ├── testctype.c ├── testdeclerr.c ├── testeic.c ├── testenum.c ├── testerr.c ├── testerr1.c ├── testerr3.c ├── testerrno.c ├── testescape.c ├── testexit.c ├── testexit1.aux ├── testexit2.aux ├── testexit3.aux ├── testextern.c ├── testfloat.c ├── testfloat2.c ├── testflow.c ├── testflow2.c ├── testflow3.c ├── testfunc.c ├── testfuncptr.c ├── testgotos.c ├── testieee.c ├── testinclude.c ├── testinclude2.aux ├── testinclude2.c ├── testinclude2a.aux ├── testinit1.c ├── testinit2.c ├── testlexer.c ├── testlexerr.c ├── testlimits.c ├── testlimits2.c ├── testllong.c ├── testlogi.c ├── testparserr.c ├── testplot.c ├── testpopen.c ├── testpp2.c ├── testpp3.c ├── testpreperr.c ├── testpreproc.c ├── testprintf.c ├── testptr.c ├── testqsort.c ├── testreturn.c ├── testsafeptr.c ├── testscanf.c ├── testscanf2.c ├── testscanf3.aux ├── testscanf3.c ├── testsclass.c ├── testsclass1.aux ├── testscop.c ├── testsetjmp.c ├── testshow.c ├── testsign.c ├── testsignal.c ├── testsizeof.c ├── teststatic.c ├── teststatic1.aux ├── teststatic2.aux ├── teststatic3.aux ├── teststatic4.aux ├── teststdio.c ├── teststmt.c ├── teststring.c ├── teststru.c ├── teststru2.c ├── teststru3.c ├── testtime.c ├── testtrace.c ├── testtypedef.c ├── testtypeerr.c ├── testtypes.c ├── testtypes2.c ├── testunsafeptr1.c ├── testunsafeptr2.aux ├── testunsafeptr2.c ├── testunsafeptr3.aux ├── testunsafeptr3.c ├── testunsafeptr4.aux ├── testunsafeptr4.c └── testva.c ├── Makefile ├── eicScripts ├── Driver.c ├── script1.eic ├── script2.eic └── www_eic.eic ├── gnutests ├── forgnuport.h ├── gnu1.c ├── gnu11.c ├── gnu12.c ├── gnu14.c ├── gnu15.c ├── gnu16.c ├── gnu17.c ├── gnu18.c ├── gnu21.c ├── gnu23.c ├── gnu24.c ├── gnu26.c ├── gnu28.c ├── gnu29.c ├── gnu3.c ├── gnu30.c ├── gnu4.c ├── gnu6.c ├── gnu7.c ├── gnu8.c ├── t1.c ├── t2.c ├── t3.c ├── t4.c ├── t5.c ├── testcbrt.c ├── testconvert.c ├── testdiv1.c ├── testgofast.c ├── tststruct-big.c ├── tststruct-layout.c ├── tststruct-ret-1.c └── tststructret.c ├── lcctests ├── stdarg.c ├── struct.c ├── tst8q.c ├── tstarray.c ├── tstcq.c ├── tstcvt.c ├── tstinit.c ├── tstsort.c ├── tststruct.c ├── tstswitch.c ├── tstw.aux └── tstw.c ├── posix.1 ├── access.c ├── changemod.c ├── fileflags.c ├── filelock.c ├── filetype.c ├── hole.c ├── lockreg.c ├── locktest.c ├── mycat.c ├── ourhdr.h ├── seek.c ├── tst1.c ├── tstdirent.c ├── tstfile.c ├── tstfilelock.c ├── tstlock.c └── unlink.c ├── runtest ├── sniptests ├── README ├── amalloc.c ├── ansiflen.c ├── arccrc16.c ├── bcdd.c ├── bcdl.c ├── bincomp.c ├── bitcnt_1.c ├── bitcnt_2.c ├── bitcnt_3.c ├── bitcnt_4.c ├── bitfiles.c ├── bitfiles.cc ├── bitops.h ├── bitstrng.c ├── bodymass.c ├── bstr_i.c ├── c_cmnt.c ├── ccard.c ├── ccard.h ├── ccardplv.h ├── checksum.c ├── combin.c ├── crc.h ├── crc_16f.c ├── crc_32.c ├── cubic.c ├── datetime.h ├── daynum.c ├── dbl2long.c ├── dblround.c ├── dow.c ├── easter.c ├── eng.c ├── err_exit.c ├── errors.h ├── etphi.c ├── extkword.h ├── factoryl.c ├── fcompare.c ├── fibo.c ├── filnames.h ├── fmtmoney.c ├── fraction.c ├── hash.c ├── hash.h ├── head.c ├── ipow.c ├── ispow2.c ├── isqrt.c ├── jdn_l.c ├── l2roman.c ├── logscale.c ├── match.c ├── match.h ├── mathstat.c ├── mathstat.h ├── maxline.c ├── memmem.c ├── minmax.h ├── moon_age.c ├── parity.c ├── parity.h ├── parstime.c ├── pbmsrch.c ├── phonetic.h ├── pi.h ├── rad2deg.c ├── rand1.c ├── rdxcnvrt.c ├── regit.c ├── regkey.h ├── remtab.c ├── rg_rand.c ├── rnd_div.c ├── roman2l.c ├── round.h ├── ruleline.c ├── scaldate.c ├── scaldate.h ├── skiplist.c ├── snip1.c ├── snip2.c ├── snip3.c ├── snip4.c ├── snip5.c ├── snip6.c ├── snip7.c ├── snip8.c ├── snip9.c ├── snip_str.h ├── snipfile.h ├── snipmath.h ├── sniptype.h ├── snparray.h ├── soundex.c ├── spigot.c ├── sstrdel.c ├── stptok.c ├── strdel.c ├── strdelch.c ├── strdup.c ├── stristr.c ├── strrev.c ├── strrpbrk.c ├── strupr.c ├── tiresize.c ├── trim.c ├── vfname.c ├── vfname.h ├── w_wrap.c └── w_wrap.h ├── test.sh └── testcode ├── tarray.c ├── tarray2.c ├── tbool.c ├── tcast.c ├── tdouble.c ├── tdouble2.c ├── terror1.c ├── tfloat.c ├── tfunc.c ├── tfunc2.c ├── tfunc3.c ├── tfunc4.c ├── tinc.c ├── tinit.c ├── tlv.c ├── top.c ├── top2.c ├── tptr.c ├── tsizeof.c └── tstruct.c /BugList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/BugList.html -------------------------------------------------------------------------------- /Change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/Change.html -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/LICENCE -------------------------------------------------------------------------------- /Link2EiC.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/Link2EiC.README -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/README -------------------------------------------------------------------------------- /README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/README.FIRST -------------------------------------------------------------------------------- /config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/Makefile -------------------------------------------------------------------------------- /config/NormalNodeTargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/NormalNodeTargets -------------------------------------------------------------------------------- /config/_LINUX/make.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/_LINUX/make.params -------------------------------------------------------------------------------- /config/_SOLARIS/make.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/_SOLARIS/make.params -------------------------------------------------------------------------------- /config/alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/alignment.c -------------------------------------------------------------------------------- /config/genstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/genstdio.c -------------------------------------------------------------------------------- /config/make.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/make.rules -------------------------------------------------------------------------------- /config/makeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/config/makeconfig -------------------------------------------------------------------------------- /doc/EiC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/EiC.tex -------------------------------------------------------------------------------- /doc/EiCgram.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/EiCgram.tex -------------------------------------------------------------------------------- /doc/FigPageSetup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/FigPageSetup.tex -------------------------------------------------------------------------------- /doc/Intro2EiC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/Intro2EiC.tex -------------------------------------------------------------------------------- /doc/Library.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/Library.tex -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/advanced.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/advanced.tex -------------------------------------------------------------------------------- /doc/computer.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/computer.bib -------------------------------------------------------------------------------- /doc/eicpreamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/eicpreamble.tex -------------------------------------------------------------------------------- /doc/embed.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/embed.tex -------------------------------------------------------------------------------- /doc/grammar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/grammar.tex -------------------------------------------------------------------------------- /doc/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/headers -------------------------------------------------------------------------------- /doc/miniblurb.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/miniblurb.tex -------------------------------------------------------------------------------- /doc/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/preface.tex -------------------------------------------------------------------------------- /doc/preproc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/preproc.tex -------------------------------------------------------------------------------- /doc/tech_doc/CommandSeq1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/CommandSeq1 -------------------------------------------------------------------------------- /doc/tech_doc/LL1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/LL1 -------------------------------------------------------------------------------- /doc/tech_doc/builtin.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/builtin.doc -------------------------------------------------------------------------------- /doc/tech_doc/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/comments -------------------------------------------------------------------------------- /doc/tech_doc/instructionSet.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/instructionSet.doc -------------------------------------------------------------------------------- /doc/tech_doc/modification.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/modification.notes -------------------------------------------------------------------------------- /doc/tech_doc/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/runtime.txt -------------------------------------------------------------------------------- /doc/tech_doc/src_cutter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/src_cutter.c -------------------------------------------------------------------------------- /doc/tech_doc/typesets.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/tech_doc/typesets.doc -------------------------------------------------------------------------------- /doc/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/doc/test.tex -------------------------------------------------------------------------------- /eic.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/eic.man -------------------------------------------------------------------------------- /eim.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/eim.man -------------------------------------------------------------------------------- /main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/main/Makefile -------------------------------------------------------------------------------- /main/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/main/README -------------------------------------------------------------------------------- /main/examples/embedEiC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/main/examples/embedEiC.c -------------------------------------------------------------------------------- /main/examples/myfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/main/examples/myfile.c -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/main/main.c -------------------------------------------------------------------------------- /module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/Makefile -------------------------------------------------------------------------------- /module/MathStats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/Makefile -------------------------------------------------------------------------------- /module/MathStats/combinatorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/combinatorial.c -------------------------------------------------------------------------------- /module/MathStats/harray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/harray.c -------------------------------------------------------------------------------- /module/MathStats/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/interpolate.c -------------------------------------------------------------------------------- /module/MathStats/mathstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/mathstats.h -------------------------------------------------------------------------------- /module/MathStats/randg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/randg.c -------------------------------------------------------------------------------- /module/MathStats/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/MathStats/stats.c -------------------------------------------------------------------------------- /module/gnuplot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/gnuplot/Makefile -------------------------------------------------------------------------------- /module/gnuplot/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/gnuplot/README.html -------------------------------------------------------------------------------- /module/gnuplot/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/gnuplot/demo.c -------------------------------------------------------------------------------- /module/gnuplot/gplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/gnuplot/gplot.h -------------------------------------------------------------------------------- /module/gnuplot/gplot3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/gnuplot/gplot3.c -------------------------------------------------------------------------------- /module/link2eic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/link2eic/Makefile -------------------------------------------------------------------------------- /module/link2eic/link2eic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/link2eic/link2eic.c -------------------------------------------------------------------------------- /module/link2eic/link2eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/link2eic/link2eic.h -------------------------------------------------------------------------------- /module/stdClib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/Makefile -------------------------------------------------------------------------------- /module/stdClib/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/Makefile -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/dirent.h -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/fcntl.h -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/ioctl.h -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/stat.h -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/termios.h -------------------------------------------------------------------------------- /module/stdClib/src/_LINUX/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_LINUX/time.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/dirent.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/fcntl.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/ioctl.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/stat.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/termios.h -------------------------------------------------------------------------------- /module/stdClib/src/_SOLARIS/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/_SOLARIS/time.h -------------------------------------------------------------------------------- /module/stdClib/src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/assert.c -------------------------------------------------------------------------------- /module/stdClib/src/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/assert.h -------------------------------------------------------------------------------- /module/stdClib/src/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/ctype.c -------------------------------------------------------------------------------- /module/stdClib/src/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/ctype.h -------------------------------------------------------------------------------- /module/stdClib/src/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/dirent.c -------------------------------------------------------------------------------- /module/stdClib/src/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/dirent.h -------------------------------------------------------------------------------- /module/stdClib/src/eicfftoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/eicfftoa.c -------------------------------------------------------------------------------- /module/stdClib/src/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/errno.c -------------------------------------------------------------------------------- /module/stdClib/src/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/errno.h -------------------------------------------------------------------------------- /module/stdClib/src/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/fcntl.c -------------------------------------------------------------------------------- /module/stdClib/src/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/float.h -------------------------------------------------------------------------------- /module/stdClib/src/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/iso646.h -------------------------------------------------------------------------------- /module/stdClib/src/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/itoa.c -------------------------------------------------------------------------------- /module/stdClib/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/math.c -------------------------------------------------------------------------------- /module/stdClib/src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/math.h -------------------------------------------------------------------------------- /module/stdClib/src/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/printf.c -------------------------------------------------------------------------------- /module/stdClib/src/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/setjmp.h -------------------------------------------------------------------------------- /module/stdClib/src/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/signal.c -------------------------------------------------------------------------------- /module/stdClib/src/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stat.c -------------------------------------------------------------------------------- /module/stdClib/src/stdClib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdClib.c -------------------------------------------------------------------------------- /module/stdClib/src/stdClib2eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdClib2eic.h -------------------------------------------------------------------------------- /module/stdClib/src/stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdarg.c -------------------------------------------------------------------------------- /module/stdClib/src/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdarg.h -------------------------------------------------------------------------------- /module/stdClib/src/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stddef.h -------------------------------------------------------------------------------- /module/stdClib/src/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdio.c -------------------------------------------------------------------------------- /module/stdClib/src/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdio.h -------------------------------------------------------------------------------- /module/stdClib/src/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdlib.c -------------------------------------------------------------------------------- /module/stdClib/src/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdlib.h -------------------------------------------------------------------------------- /module/stdClib/src/stdliblocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/stdliblocal.h -------------------------------------------------------------------------------- /module/stdClib/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/string.c -------------------------------------------------------------------------------- /module/stdClib/src/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/string.h -------------------------------------------------------------------------------- /module/stdClib/src/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/strrev.c -------------------------------------------------------------------------------- /module/stdClib/src/strround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/strround.c -------------------------------------------------------------------------------- /module/stdClib/src/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/termios.c -------------------------------------------------------------------------------- /module/stdClib/src/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/termios.h -------------------------------------------------------------------------------- /module/stdClib/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/time.c -------------------------------------------------------------------------------- /module/stdClib/src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/time.h -------------------------------------------------------------------------------- /module/stdClib/src/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/unistd.c -------------------------------------------------------------------------------- /module/stdClib/src/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/module/stdClib/src/unistd.h -------------------------------------------------------------------------------- /new_main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/Makefile -------------------------------------------------------------------------------- /new_main/examples/test-datatypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/examples/test-datatypes.c -------------------------------------------------------------------------------- /new_main/link2eic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/link2eic.c -------------------------------------------------------------------------------- /new_main/link2eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/link2eic.h -------------------------------------------------------------------------------- /new_main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/main.c -------------------------------------------------------------------------------- /new_main/volatile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/new_main/volatile.dat -------------------------------------------------------------------------------- /override.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/override.params -------------------------------------------------------------------------------- /project.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/project.params -------------------------------------------------------------------------------- /src/MachSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/MachSet.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/assertp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/assertp.h -------------------------------------------------------------------------------- /src/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/callback.c -------------------------------------------------------------------------------- /src/cdecl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/cdecl.c -------------------------------------------------------------------------------- /src/cdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/cdecl.h -------------------------------------------------------------------------------- /src/datastruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/datastruct.h -------------------------------------------------------------------------------- /src/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/eic.h -------------------------------------------------------------------------------- /src/eicmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/eicmod.c -------------------------------------------------------------------------------- /src/eicval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/eicval.h -------------------------------------------------------------------------------- /src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/emitter.c -------------------------------------------------------------------------------- /src/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/emitter.h -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/error.c -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/error.h -------------------------------------------------------------------------------- /src/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/func.c -------------------------------------------------------------------------------- /src/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/func.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/global.h -------------------------------------------------------------------------------- /src/interpre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/interpre.c -------------------------------------------------------------------------------- /src/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/lexer.c -------------------------------------------------------------------------------- /src/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/lexer.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/main.c -------------------------------------------------------------------------------- /src/metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/metric.h -------------------------------------------------------------------------------- /src/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/modules.h -------------------------------------------------------------------------------- /src/optomizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/optomizer.c -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/preexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/preexpr.c -------------------------------------------------------------------------------- /src/preproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/preproc.c -------------------------------------------------------------------------------- /src/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/preproc.h -------------------------------------------------------------------------------- /src/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/readline.c -------------------------------------------------------------------------------- /src/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/reset.c -------------------------------------------------------------------------------- /src/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/reset.h -------------------------------------------------------------------------------- /src/stab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/stab.c -------------------------------------------------------------------------------- /src/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/stab.h -------------------------------------------------------------------------------- /src/starteic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/starteic.c -------------------------------------------------------------------------------- /src/starteic.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/starteic.src -------------------------------------------------------------------------------- /src/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/symbol.c -------------------------------------------------------------------------------- /src/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/symbol.h -------------------------------------------------------------------------------- /src/symentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/symentry.h -------------------------------------------------------------------------------- /src/typemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/typemod.c -------------------------------------------------------------------------------- /src/typemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/typemod.h -------------------------------------------------------------------------------- /src/typesets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/typesets.c -------------------------------------------------------------------------------- /src/typesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/typesets.h -------------------------------------------------------------------------------- /src/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/xalloc.h -------------------------------------------------------------------------------- /src/ymem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/src/ymem.c -------------------------------------------------------------------------------- /test/EiCtests/gethashwords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/gethashwords.c -------------------------------------------------------------------------------- /test/EiCtests/testAassert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testAassert.c -------------------------------------------------------------------------------- /test/EiCtests/testAbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testAbinary.c -------------------------------------------------------------------------------- /test/EiCtests/testMemErr1.aux: -------------------------------------------------------------------------------- 1 | int f() 2 | { 3 | return 1; 4 | } 5 | -------------------------------------------------------------------------------- /test/EiCtests/testMemErr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testMemErr1.c -------------------------------------------------------------------------------- /test/EiCtests/testMemErr2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testMemErr2.aux -------------------------------------------------------------------------------- /test/EiCtests/testMemErr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testMemErr2.c -------------------------------------------------------------------------------- /test/EiCtests/testMemErr2b.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testMemErr2b.aux -------------------------------------------------------------------------------- /test/EiCtests/testMemErr2c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testMemErr2c.aux -------------------------------------------------------------------------------- /test/EiCtests/testaddressop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testaddressop.c -------------------------------------------------------------------------------- /test/EiCtests/testarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testarray.c -------------------------------------------------------------------------------- /test/EiCtests/testarray2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testarray2.c -------------------------------------------------------------------------------- /test/EiCtests/testarray3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testarray3.c -------------------------------------------------------------------------------- /test/EiCtests/testarray4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testarray4.c -------------------------------------------------------------------------------- /test/EiCtests/testaryptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testaryptr.c -------------------------------------------------------------------------------- /test/EiCtests/testassign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testassign.c -------------------------------------------------------------------------------- /test/EiCtests/testcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcast.c -------------------------------------------------------------------------------- /test/EiCtests/testcomma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcomma.c -------------------------------------------------------------------------------- /test/EiCtests/testcommandline.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcommandline.aux -------------------------------------------------------------------------------- /test/EiCtests/testcommandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcommandline.c -------------------------------------------------------------------------------- /test/EiCtests/testcompliant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcompliant.c -------------------------------------------------------------------------------- /test/EiCtests/testcond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testcond.c -------------------------------------------------------------------------------- /test/EiCtests/testconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testconst.c -------------------------------------------------------------------------------- /test/EiCtests/testctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testctype.c -------------------------------------------------------------------------------- /test/EiCtests/testdeclerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testdeclerr.c -------------------------------------------------------------------------------- /test/EiCtests/testeic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testeic.c -------------------------------------------------------------------------------- /test/EiCtests/testenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testenum.c -------------------------------------------------------------------------------- /test/EiCtests/testerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testerr.c -------------------------------------------------------------------------------- /test/EiCtests/testerr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testerr1.c -------------------------------------------------------------------------------- /test/EiCtests/testerr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testerr3.c -------------------------------------------------------------------------------- /test/EiCtests/testerrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testerrno.c -------------------------------------------------------------------------------- /test/EiCtests/testescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testescape.c -------------------------------------------------------------------------------- /test/EiCtests/testexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testexit.c -------------------------------------------------------------------------------- /test/EiCtests/testexit1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testexit1.aux -------------------------------------------------------------------------------- /test/EiCtests/testexit2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testexit2.aux -------------------------------------------------------------------------------- /test/EiCtests/testexit3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testexit3.aux -------------------------------------------------------------------------------- /test/EiCtests/testextern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testextern.c -------------------------------------------------------------------------------- /test/EiCtests/testfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testfloat.c -------------------------------------------------------------------------------- /test/EiCtests/testfloat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testfloat2.c -------------------------------------------------------------------------------- /test/EiCtests/testflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testflow.c -------------------------------------------------------------------------------- /test/EiCtests/testflow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testflow2.c -------------------------------------------------------------------------------- /test/EiCtests/testflow3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testflow3.c -------------------------------------------------------------------------------- /test/EiCtests/testfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testfunc.c -------------------------------------------------------------------------------- /test/EiCtests/testfuncptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testfuncptr.c -------------------------------------------------------------------------------- /test/EiCtests/testgotos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testgotos.c -------------------------------------------------------------------------------- /test/EiCtests/testieee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testieee.c -------------------------------------------------------------------------------- /test/EiCtests/testinclude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinclude.c -------------------------------------------------------------------------------- /test/EiCtests/testinclude2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinclude2.aux -------------------------------------------------------------------------------- /test/EiCtests/testinclude2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinclude2.c -------------------------------------------------------------------------------- /test/EiCtests/testinclude2a.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinclude2a.aux -------------------------------------------------------------------------------- /test/EiCtests/testinit1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinit1.c -------------------------------------------------------------------------------- /test/EiCtests/testinit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testinit2.c -------------------------------------------------------------------------------- /test/EiCtests/testlexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testlexer.c -------------------------------------------------------------------------------- /test/EiCtests/testlexerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testlexerr.c -------------------------------------------------------------------------------- /test/EiCtests/testlimits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testlimits.c -------------------------------------------------------------------------------- /test/EiCtests/testlimits2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testlimits2.c -------------------------------------------------------------------------------- /test/EiCtests/testllong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testllong.c -------------------------------------------------------------------------------- /test/EiCtests/testlogi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testlogi.c -------------------------------------------------------------------------------- /test/EiCtests/testparserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testparserr.c -------------------------------------------------------------------------------- /test/EiCtests/testplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testplot.c -------------------------------------------------------------------------------- /test/EiCtests/testpopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testpopen.c -------------------------------------------------------------------------------- /test/EiCtests/testpp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testpp2.c -------------------------------------------------------------------------------- /test/EiCtests/testpp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testpp3.c -------------------------------------------------------------------------------- /test/EiCtests/testpreperr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testpreperr.c -------------------------------------------------------------------------------- /test/EiCtests/testpreproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testpreproc.c -------------------------------------------------------------------------------- /test/EiCtests/testprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testprintf.c -------------------------------------------------------------------------------- /test/EiCtests/testptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testptr.c -------------------------------------------------------------------------------- /test/EiCtests/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testqsort.c -------------------------------------------------------------------------------- /test/EiCtests/testreturn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testreturn.c -------------------------------------------------------------------------------- /test/EiCtests/testsafeptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsafeptr.c -------------------------------------------------------------------------------- /test/EiCtests/testscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testscanf.c -------------------------------------------------------------------------------- /test/EiCtests/testscanf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testscanf2.c -------------------------------------------------------------------------------- /test/EiCtests/testscanf3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testscanf3.aux -------------------------------------------------------------------------------- /test/EiCtests/testscanf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testscanf3.c -------------------------------------------------------------------------------- /test/EiCtests/testsclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsclass.c -------------------------------------------------------------------------------- /test/EiCtests/testsclass1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsclass1.aux -------------------------------------------------------------------------------- /test/EiCtests/testscop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testscop.c -------------------------------------------------------------------------------- /test/EiCtests/testsetjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsetjmp.c -------------------------------------------------------------------------------- /test/EiCtests/testshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testshow.c -------------------------------------------------------------------------------- /test/EiCtests/testsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsign.c -------------------------------------------------------------------------------- /test/EiCtests/testsignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsignal.c -------------------------------------------------------------------------------- /test/EiCtests/testsizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testsizeof.c -------------------------------------------------------------------------------- /test/EiCtests/teststatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststatic.c -------------------------------------------------------------------------------- /test/EiCtests/teststatic1.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststatic1.aux -------------------------------------------------------------------------------- /test/EiCtests/teststatic2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststatic2.aux -------------------------------------------------------------------------------- /test/EiCtests/teststatic3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststatic3.aux -------------------------------------------------------------------------------- /test/EiCtests/teststatic4.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststatic4.aux -------------------------------------------------------------------------------- /test/EiCtests/teststdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststdio.c -------------------------------------------------------------------------------- /test/EiCtests/teststmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststmt.c -------------------------------------------------------------------------------- /test/EiCtests/teststring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststring.c -------------------------------------------------------------------------------- /test/EiCtests/teststru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststru.c -------------------------------------------------------------------------------- /test/EiCtests/teststru2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststru2.c -------------------------------------------------------------------------------- /test/EiCtests/teststru3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/teststru3.c -------------------------------------------------------------------------------- /test/EiCtests/testtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtime.c -------------------------------------------------------------------------------- /test/EiCtests/testtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtrace.c -------------------------------------------------------------------------------- /test/EiCtests/testtypedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtypedef.c -------------------------------------------------------------------------------- /test/EiCtests/testtypeerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtypeerr.c -------------------------------------------------------------------------------- /test/EiCtests/testtypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtypes.c -------------------------------------------------------------------------------- /test/EiCtests/testtypes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testtypes2.c -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr1.c -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr2.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr2.aux -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr2.c -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr3.aux -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr3.c -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr4.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr4.aux -------------------------------------------------------------------------------- /test/EiCtests/testunsafeptr4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testunsafeptr4.c -------------------------------------------------------------------------------- /test/EiCtests/testva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/EiCtests/testva.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/eicScripts/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/eicScripts/Driver.c -------------------------------------------------------------------------------- /test/eicScripts/script1.eic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/eicScripts/script1.eic -------------------------------------------------------------------------------- /test/eicScripts/script2.eic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/eicScripts/script2.eic -------------------------------------------------------------------------------- /test/eicScripts/www_eic.eic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/eicScripts/www_eic.eic -------------------------------------------------------------------------------- /test/gnutests/forgnuport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/forgnuport.h -------------------------------------------------------------------------------- /test/gnutests/gnu1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu1.c -------------------------------------------------------------------------------- /test/gnutests/gnu11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu11.c -------------------------------------------------------------------------------- /test/gnutests/gnu12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu12.c -------------------------------------------------------------------------------- /test/gnutests/gnu14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu14.c -------------------------------------------------------------------------------- /test/gnutests/gnu15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu15.c -------------------------------------------------------------------------------- /test/gnutests/gnu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu16.c -------------------------------------------------------------------------------- /test/gnutests/gnu17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu17.c -------------------------------------------------------------------------------- /test/gnutests/gnu18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu18.c -------------------------------------------------------------------------------- /test/gnutests/gnu21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu21.c -------------------------------------------------------------------------------- /test/gnutests/gnu23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu23.c -------------------------------------------------------------------------------- /test/gnutests/gnu24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu24.c -------------------------------------------------------------------------------- /test/gnutests/gnu26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu26.c -------------------------------------------------------------------------------- /test/gnutests/gnu28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu28.c -------------------------------------------------------------------------------- /test/gnutests/gnu29.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu29.c -------------------------------------------------------------------------------- /test/gnutests/gnu3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu3.c -------------------------------------------------------------------------------- /test/gnutests/gnu30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu30.c -------------------------------------------------------------------------------- /test/gnutests/gnu4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu4.c -------------------------------------------------------------------------------- /test/gnutests/gnu6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu6.c -------------------------------------------------------------------------------- /test/gnutests/gnu7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu7.c -------------------------------------------------------------------------------- /test/gnutests/gnu8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/gnu8.c -------------------------------------------------------------------------------- /test/gnutests/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/t1.c -------------------------------------------------------------------------------- /test/gnutests/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/t2.c -------------------------------------------------------------------------------- /test/gnutests/t3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/t3.c -------------------------------------------------------------------------------- /test/gnutests/t4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/t4.c -------------------------------------------------------------------------------- /test/gnutests/t5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/t5.c -------------------------------------------------------------------------------- /test/gnutests/testcbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/testcbrt.c -------------------------------------------------------------------------------- /test/gnutests/testconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/testconvert.c -------------------------------------------------------------------------------- /test/gnutests/testdiv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/testdiv1.c -------------------------------------------------------------------------------- /test/gnutests/testgofast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/testgofast.c -------------------------------------------------------------------------------- /test/gnutests/tststruct-big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/tststruct-big.c -------------------------------------------------------------------------------- /test/gnutests/tststruct-layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/tststruct-layout.c -------------------------------------------------------------------------------- /test/gnutests/tststruct-ret-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/tststruct-ret-1.c -------------------------------------------------------------------------------- /test/gnutests/tststructret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/gnutests/tststructret.c -------------------------------------------------------------------------------- /test/lcctests/stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/stdarg.c -------------------------------------------------------------------------------- /test/lcctests/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/struct.c -------------------------------------------------------------------------------- /test/lcctests/tst8q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tst8q.c -------------------------------------------------------------------------------- /test/lcctests/tstarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstarray.c -------------------------------------------------------------------------------- /test/lcctests/tstcq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstcq.c -------------------------------------------------------------------------------- /test/lcctests/tstcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstcvt.c -------------------------------------------------------------------------------- /test/lcctests/tstinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstinit.c -------------------------------------------------------------------------------- /test/lcctests/tstsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstsort.c -------------------------------------------------------------------------------- /test/lcctests/tststruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tststruct.c -------------------------------------------------------------------------------- /test/lcctests/tstswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstswitch.c -------------------------------------------------------------------------------- /test/lcctests/tstw.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstw.aux -------------------------------------------------------------------------------- /test/lcctests/tstw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/lcctests/tstw.c -------------------------------------------------------------------------------- /test/posix.1/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/access.c -------------------------------------------------------------------------------- /test/posix.1/changemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/changemod.c -------------------------------------------------------------------------------- /test/posix.1/fileflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/fileflags.c -------------------------------------------------------------------------------- /test/posix.1/filelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/filelock.c -------------------------------------------------------------------------------- /test/posix.1/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/filetype.c -------------------------------------------------------------------------------- /test/posix.1/hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/hole.c -------------------------------------------------------------------------------- /test/posix.1/lockreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/lockreg.c -------------------------------------------------------------------------------- /test/posix.1/locktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/locktest.c -------------------------------------------------------------------------------- /test/posix.1/mycat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/mycat.c -------------------------------------------------------------------------------- /test/posix.1/ourhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/ourhdr.h -------------------------------------------------------------------------------- /test/posix.1/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/seek.c -------------------------------------------------------------------------------- /test/posix.1/tst1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/tst1.c -------------------------------------------------------------------------------- /test/posix.1/tstdirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/tstdirent.c -------------------------------------------------------------------------------- /test/posix.1/tstfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/tstfile.c -------------------------------------------------------------------------------- /test/posix.1/tstfilelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/tstfilelock.c -------------------------------------------------------------------------------- /test/posix.1/tstlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/tstlock.c -------------------------------------------------------------------------------- /test/posix.1/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/posix.1/unlink.c -------------------------------------------------------------------------------- /test/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/runtest -------------------------------------------------------------------------------- /test/sniptests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/README -------------------------------------------------------------------------------- /test/sniptests/amalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/amalloc.c -------------------------------------------------------------------------------- /test/sniptests/ansiflen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ansiflen.c -------------------------------------------------------------------------------- /test/sniptests/arccrc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/arccrc16.c -------------------------------------------------------------------------------- /test/sniptests/bcdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bcdd.c -------------------------------------------------------------------------------- /test/sniptests/bcdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bcdl.c -------------------------------------------------------------------------------- /test/sniptests/bincomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bincomp.c -------------------------------------------------------------------------------- /test/sniptests/bitcnt_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitcnt_1.c -------------------------------------------------------------------------------- /test/sniptests/bitcnt_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitcnt_2.c -------------------------------------------------------------------------------- /test/sniptests/bitcnt_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitcnt_3.c -------------------------------------------------------------------------------- /test/sniptests/bitcnt_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitcnt_4.c -------------------------------------------------------------------------------- /test/sniptests/bitfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitfiles.c -------------------------------------------------------------------------------- /test/sniptests/bitfiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitfiles.cc -------------------------------------------------------------------------------- /test/sniptests/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitops.h -------------------------------------------------------------------------------- /test/sniptests/bitstrng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bitstrng.c -------------------------------------------------------------------------------- /test/sniptests/bodymass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bodymass.c -------------------------------------------------------------------------------- /test/sniptests/bstr_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/bstr_i.c -------------------------------------------------------------------------------- /test/sniptests/c_cmnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/c_cmnt.c -------------------------------------------------------------------------------- /test/sniptests/ccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ccard.c -------------------------------------------------------------------------------- /test/sniptests/ccard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ccard.h -------------------------------------------------------------------------------- /test/sniptests/ccardplv.h: -------------------------------------------------------------------------------- 1 | /* +++Date last modified: 05-Jul-1997 */ 2 | 3 | #define PATCHLEVEL "1.1.D009" 4 | -------------------------------------------------------------------------------- /test/sniptests/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/checksum.c -------------------------------------------------------------------------------- /test/sniptests/combin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/combin.c -------------------------------------------------------------------------------- /test/sniptests/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/crc.h -------------------------------------------------------------------------------- /test/sniptests/crc_16f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/crc_16f.c -------------------------------------------------------------------------------- /test/sniptests/crc_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/crc_32.c -------------------------------------------------------------------------------- /test/sniptests/cubic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/cubic.c -------------------------------------------------------------------------------- /test/sniptests/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/datetime.h -------------------------------------------------------------------------------- /test/sniptests/daynum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/daynum.c -------------------------------------------------------------------------------- /test/sniptests/dbl2long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/dbl2long.c -------------------------------------------------------------------------------- /test/sniptests/dblround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/dblround.c -------------------------------------------------------------------------------- /test/sniptests/dow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/dow.c -------------------------------------------------------------------------------- /test/sniptests/easter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/easter.c -------------------------------------------------------------------------------- /test/sniptests/eng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/eng.c -------------------------------------------------------------------------------- /test/sniptests/err_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/err_exit.c -------------------------------------------------------------------------------- /test/sniptests/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/errors.h -------------------------------------------------------------------------------- /test/sniptests/etphi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/etphi.c -------------------------------------------------------------------------------- /test/sniptests/extkword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/extkword.h -------------------------------------------------------------------------------- /test/sniptests/factoryl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/factoryl.c -------------------------------------------------------------------------------- /test/sniptests/fcompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/fcompare.c -------------------------------------------------------------------------------- /test/sniptests/fibo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/fibo.c -------------------------------------------------------------------------------- /test/sniptests/filnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/filnames.h -------------------------------------------------------------------------------- /test/sniptests/fmtmoney.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/fmtmoney.c -------------------------------------------------------------------------------- /test/sniptests/fraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/fraction.c -------------------------------------------------------------------------------- /test/sniptests/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/hash.c -------------------------------------------------------------------------------- /test/sniptests/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/hash.h -------------------------------------------------------------------------------- /test/sniptests/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/head.c -------------------------------------------------------------------------------- /test/sniptests/ipow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ipow.c -------------------------------------------------------------------------------- /test/sniptests/ispow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ispow2.c -------------------------------------------------------------------------------- /test/sniptests/isqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/isqrt.c -------------------------------------------------------------------------------- /test/sniptests/jdn_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/jdn_l.c -------------------------------------------------------------------------------- /test/sniptests/l2roman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/l2roman.c -------------------------------------------------------------------------------- /test/sniptests/logscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/logscale.c -------------------------------------------------------------------------------- /test/sniptests/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/match.c -------------------------------------------------------------------------------- /test/sniptests/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/match.h -------------------------------------------------------------------------------- /test/sniptests/mathstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/mathstat.c -------------------------------------------------------------------------------- /test/sniptests/mathstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/mathstat.h -------------------------------------------------------------------------------- /test/sniptests/maxline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/maxline.c -------------------------------------------------------------------------------- /test/sniptests/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/memmem.c -------------------------------------------------------------------------------- /test/sniptests/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/minmax.h -------------------------------------------------------------------------------- /test/sniptests/moon_age.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/moon_age.c -------------------------------------------------------------------------------- /test/sniptests/parity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/parity.c -------------------------------------------------------------------------------- /test/sniptests/parity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/parity.h -------------------------------------------------------------------------------- /test/sniptests/parstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/parstime.c -------------------------------------------------------------------------------- /test/sniptests/pbmsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/pbmsrch.c -------------------------------------------------------------------------------- /test/sniptests/phonetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/phonetic.h -------------------------------------------------------------------------------- /test/sniptests/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/pi.h -------------------------------------------------------------------------------- /test/sniptests/rad2deg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/rad2deg.c -------------------------------------------------------------------------------- /test/sniptests/rand1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/rand1.c -------------------------------------------------------------------------------- /test/sniptests/rdxcnvrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/rdxcnvrt.c -------------------------------------------------------------------------------- /test/sniptests/regit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/regit.c -------------------------------------------------------------------------------- /test/sniptests/regkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/regkey.h -------------------------------------------------------------------------------- /test/sniptests/remtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/remtab.c -------------------------------------------------------------------------------- /test/sniptests/rg_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/rg_rand.c -------------------------------------------------------------------------------- /test/sniptests/rnd_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/rnd_div.c -------------------------------------------------------------------------------- /test/sniptests/roman2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/roman2l.c -------------------------------------------------------------------------------- /test/sniptests/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/round.h -------------------------------------------------------------------------------- /test/sniptests/ruleline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/ruleline.c -------------------------------------------------------------------------------- /test/sniptests/scaldate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/scaldate.c -------------------------------------------------------------------------------- /test/sniptests/scaldate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/scaldate.h -------------------------------------------------------------------------------- /test/sniptests/skiplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/skiplist.c -------------------------------------------------------------------------------- /test/sniptests/snip1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip1.c -------------------------------------------------------------------------------- /test/sniptests/snip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip2.c -------------------------------------------------------------------------------- /test/sniptests/snip3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip3.c -------------------------------------------------------------------------------- /test/sniptests/snip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip4.c -------------------------------------------------------------------------------- /test/sniptests/snip5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip5.c -------------------------------------------------------------------------------- /test/sniptests/snip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip6.c -------------------------------------------------------------------------------- /test/sniptests/snip7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip7.c -------------------------------------------------------------------------------- /test/sniptests/snip8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip8.c -------------------------------------------------------------------------------- /test/sniptests/snip9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip9.c -------------------------------------------------------------------------------- /test/sniptests/snip_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snip_str.h -------------------------------------------------------------------------------- /test/sniptests/snipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snipfile.h -------------------------------------------------------------------------------- /test/sniptests/snipmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snipmath.h -------------------------------------------------------------------------------- /test/sniptests/sniptype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/sniptype.h -------------------------------------------------------------------------------- /test/sniptests/snparray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/snparray.h -------------------------------------------------------------------------------- /test/sniptests/soundex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/soundex.c -------------------------------------------------------------------------------- /test/sniptests/spigot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/spigot.c -------------------------------------------------------------------------------- /test/sniptests/sstrdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/sstrdel.c -------------------------------------------------------------------------------- /test/sniptests/stptok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/stptok.c -------------------------------------------------------------------------------- /test/sniptests/strdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strdel.c -------------------------------------------------------------------------------- /test/sniptests/strdelch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strdelch.c -------------------------------------------------------------------------------- /test/sniptests/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strdup.c -------------------------------------------------------------------------------- /test/sniptests/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/stristr.c -------------------------------------------------------------------------------- /test/sniptests/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strrev.c -------------------------------------------------------------------------------- /test/sniptests/strrpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strrpbrk.c -------------------------------------------------------------------------------- /test/sniptests/strupr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/strupr.c -------------------------------------------------------------------------------- /test/sniptests/tiresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/tiresize.c -------------------------------------------------------------------------------- /test/sniptests/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/trim.c -------------------------------------------------------------------------------- /test/sniptests/vfname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/vfname.c -------------------------------------------------------------------------------- /test/sniptests/vfname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/vfname.h -------------------------------------------------------------------------------- /test/sniptests/w_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/w_wrap.c -------------------------------------------------------------------------------- /test/sniptests/w_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/sniptests/w_wrap.h -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/testcode/tarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tarray.c -------------------------------------------------------------------------------- /test/testcode/tarray2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tarray2.c -------------------------------------------------------------------------------- /test/testcode/tbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tbool.c -------------------------------------------------------------------------------- /test/testcode/tcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tcast.c -------------------------------------------------------------------------------- /test/testcode/tdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tdouble.c -------------------------------------------------------------------------------- /test/testcode/tdouble2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tdouble2.c -------------------------------------------------------------------------------- /test/testcode/terror1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/terror1.c -------------------------------------------------------------------------------- /test/testcode/tfloat.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | printf ("7.0 = %f\n", 7.0); 4 | -------------------------------------------------------------------------------- /test/testcode/tfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tfunc.c -------------------------------------------------------------------------------- /test/testcode/tfunc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tfunc2.c -------------------------------------------------------------------------------- /test/testcode/tfunc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tfunc3.c -------------------------------------------------------------------------------- /test/testcode/tfunc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tfunc4.c -------------------------------------------------------------------------------- /test/testcode/tinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tinc.c -------------------------------------------------------------------------------- /test/testcode/tinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tinit.c -------------------------------------------------------------------------------- /test/testcode/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tlv.c -------------------------------------------------------------------------------- /test/testcode/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/top.c -------------------------------------------------------------------------------- /test/testcode/top2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/top2.c -------------------------------------------------------------------------------- /test/testcode/tptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tptr.c -------------------------------------------------------------------------------- /test/testcode/tsizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tsizeof.c -------------------------------------------------------------------------------- /test/testcode/tstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfooman/EiC-C-Interpreter/HEAD/test/testcode/tstruct.c --------------------------------------------------------------------------------