pilot: Add rpilot, an implementation of the pilot programming language
authorAlan Cox <alan@linux.intel.com>
Thu, 2 Jun 2016 22:56:23 +0000 (23:56 +0100)
committerAlan Cox <alan@linux.intel.com>
Thu, 2 Jun 2016 22:56:23 +0000 (23:56 +0100)
commit646b730b2e6f82286267b767b74bed073ed7f02f
tree407ed493da15a78da1cbb784d0fb25a71c428987
parent4081ebfaaeb8fa8e80efa7187934ffcacb0910b0
pilot: Add rpilot, an implementation of the pilot programming language

Taken from http://rpilot.sourceforge.net/pilot.html and cleaned up to fix
various non-ANSIisms, missing includes and other mess. Could still do with
more of a tidy up and space optimisations, but hey it fits, it's silly and
it's in keeping with the period.
54 files changed:
Applications/rpilot-1.4.2/INSTALL [new file with mode: 0644]
Applications/rpilot-1.4.2/Makefile [new file with mode: 0644]
Applications/rpilot-1.4.2/Makefile.gcc [new file with mode: 0644]
Applications/rpilot-1.4.2/bind.c [new file with mode: 0644]
Applications/rpilot-1.4.2/bind.h [new file with mode: 0644]
Applications/rpilot-1.4.2/calc.c [new file with mode: 0644]
Applications/rpilot-1.4.2/calc.h [new file with mode: 0644]
Applications/rpilot-1.4.2/cmds.c [new file with mode: 0644]
Applications/rpilot-1.4.2/cmds.h [new file with mode: 0644]
Applications/rpilot-1.4.2/condex.c [new file with mode: 0644]
Applications/rpilot-1.4.2/condex.h [new file with mode: 0644]
Applications/rpilot-1.4.2/debug.c [new file with mode: 0644]
Applications/rpilot-1.4.2/debug.h [new file with mode: 0644]
Applications/rpilot-1.4.2/doc/CHANGELOG [new file with mode: 0644]
Applications/rpilot-1.4.2/doc/COPYING [new file with mode: 0644]
Applications/rpilot-1.4.2/doc/examples.txt [new file with mode: 0644]
Applications/rpilot-1.4.2/doc/rpilot.1 [new file with mode: 0644]
Applications/rpilot-1.4.2/doc/rpilot.txt [new file with mode: 0644]
Applications/rpilot-1.4.2/err.c [new file with mode: 0644]
Applications/rpilot-1.4.2/err.h [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/crazy.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/dosmenu.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/fact.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/french.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/guess.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/hello.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/inter.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/jump-use.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/math.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/name.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/recurse.p [new file with mode: 0644]
Applications/rpilot-1.4.2/examples/unixmenu.p [new file with mode: 0644]
Applications/rpilot-1.4.2/foo.c [new file with mode: 0644]
Applications/rpilot-1.4.2/foo.h [new file with mode: 0644]
Applications/rpilot-1.4.2/interact.c [new file with mode: 0644]
Applications/rpilot-1.4.2/interact.h [new file with mode: 0644]
Applications/rpilot-1.4.2/label.c [new file with mode: 0644]
Applications/rpilot-1.4.2/label.h [new file with mode: 0644]
Applications/rpilot-1.4.2/line.c [new file with mode: 0644]
Applications/rpilot-1.4.2/line.h [new file with mode: 0644]
Applications/rpilot-1.4.2/main.c [new file with mode: 0644]
Applications/rpilot-1.4.2/main.h [new file with mode: 0644]
Applications/rpilot-1.4.2/math.c [new file with mode: 0644]
Applications/rpilot-1.4.2/math.h [new file with mode: 0644]
Applications/rpilot-1.4.2/rpilot.c [new file with mode: 0644]
Applications/rpilot-1.4.2/rpilot.h [new file with mode: 0644]
Applications/rpilot-1.4.2/rpinfo.c [new file with mode: 0644]
Applications/rpilot-1.4.2/rpinfo.h [new file with mode: 0644]
Applications/rpilot-1.4.2/rstring.c [new file with mode: 0644]
Applications/rpilot-1.4.2/rstring.h [new file with mode: 0644]
Applications/rpilot-1.4.2/stack.c [new file with mode: 0644]
Applications/rpilot-1.4.2/stack.h [new file with mode: 0644]
Applications/rpilot-1.4.2/var.c [new file with mode: 0644]
Applications/rpilot-1.4.2/var.h [new file with mode: 0644]