├── .gitattributes ├── .gitignore ├── .settings ├── org.eclipse.cdt.core.prefs └── org.eclipse.cdt.ui.prefs ├── COPYING.LIB ├── ChangeLog ├── INSTALL.TXT ├── Makefile.am ├── Makefile.in ├── Makefile.mk ├── README ├── TODO ├── aclocal.m4 ├── autogen.sh ├── bin ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── configure ├── configure.ac └── pfe-exec.c ├── configure ├── configure.ac ├── dbk ├── pfe-fth.dbk ├── pfe-fth.mk ├── pfe-words.xml ├── wordsets2words.pl └── xml-c-pfe-doc.e ├── doc ├── 4ring.gif ├── 4thtutor.ar ├── Forthprimer.pdf ├── Makefile.am ├── Makefile.in ├── PFE.css ├── authors.htm ├── body.htm ├── changes.htm ├── dirk-zoller-readme.dbk ├── doc-index.dbk ├── documentation.htm ├── dpans.ar ├── forth-any-192.png ├── forth-pfe-192-light.png ├── forth-pfe-192.png ├── header-fields.dbk ├── help2man.pl ├── how-to-write-a-pfe-module.dbk ├── index.htm ├── internal-decisions-about-headers.dbk ├── known-problems.dbk ├── lgpl-license.dbk ├── lgpl-license.htm ├── license.dbk ├── license.htm ├── literature.dbk ├── locals.dbk ├── make-dist.dbk ├── makedocs.py ├── pfe-manual.dbk ├── pfe-master.odt ├── pfe.1 ├── pfe.htm ├── pfedoc │ ├── __init__.py │ ├── commentmarkup.py │ ├── dbk2htm.py │ ├── docbookdocument.py │ ├── forthheader.py │ ├── forthmodule.py │ ├── forthnotation.py │ ├── forthwords.py │ ├── forthwordset.py │ ├── forthwordsethtmlpage.py │ ├── forthwordsetreference.py │ ├── functionheader.py │ ├── functionlisthtmlpage.py │ ├── functionlistreference.py │ ├── functionprototype.py │ ├── htm2dbk.py │ ├── htmldirectory.py │ ├── htmldocument.py │ ├── match.py │ ├── odtdocument.py │ ├── odttypes.py │ ├── options.py │ ├── textfile.py │ └── textfileheader.py ├── porting-sbr-threading.dbk ├── posixcalls.dbk ├── quoted-parse-idea.dbk ├── special-implementation-strategies.dbk ├── src │ ├── Makefile │ └── PFE.css ├── statesmart-words.dbk ├── threading.dbk ├── tuning.dbk ├── uppercasing.dbk └── wordset-modules.dbk ├── lib ├── Makefile.am ├── Makefile.in ├── arrays.4th ├── defer-is.4th ├── doermake.4th ├── easy4th.f ├── library.4th ├── loading.4th ├── pardot.4th ├── sh-libs.4th └── struct.4th ├── mk ├── Make-H.pl ├── Make-H.py ├── fb-2-fs.pl └── fb-2-fs.py ├── pfe.spec ├── pfe ├── Makefile.am ├── Makefile.in ├── _missing.c ├── _missing.h ├── _nonansi.h ├── aclocal.m4 ├── assembler-dll.c ├── assembler-ext.c ├── assembler-ext.h ├── block-ext.c ├── block-ext.h ├── block-mix.c ├── block-mix.h ├── block-stk.c ├── block-sub.c ├── block-sub.h ├── cdecl-ext.c ├── cdecl-ext.h ├── cdecl-stk.c ├── chain-ext.c ├── chain-ext.h ├── chain-stk.c ├── chainlist-ext.c ├── chainlist-ext.h ├── chainlist-stk.c ├── complex-dll.c ├── complex-ext.c ├── complex-ext.h ├── complex-pfe.log ├── config.h.in ├── configure ├── configure.ac ├── core-ext.c ├── core-ext.h ├── core-mix.c ├── core-mix.h ├── core-stk.c ├── core-sub.c ├── core-sub.h ├── debug-ext.c ├── debug-ext.h ├── debug-stk.c ├── def-cell.h ├── def-check.c ├── def-comp-c89.h ├── def-comp.h ├── def-config.h ├── def-const.h ├── def-gcc.h ├── def-limits.h ├── def-macro.h ├── def-paths.h ├── def-pth.h ├── def-regmacro.h ├── def-regs.h ├── def-regth.h ├── def-restore.h ├── def-sbrcode.h ├── def-types.h ├── def-words.h ├── dict-comp.c ├── dict-comp.h ├── dict-sub.c ├── dict-sub.h ├── dl-def.c ├── dl-dlfcn.c ├── dl-ext.c ├── dl-hpux.c ├── dl-internal.c ├── dl-none.c ├── dl-vxworks.c ├── dl-win32.c ├── double-ext.c ├── double-ext.h ├── double-mix.c ├── double-mix.h ├── double-sub.c ├── double-sub.h ├── dstrings-dll.c ├── dstrings-ext.c ├── dstrings-ext.h ├── edit-dll.c ├── edit-ext.c ├── edit-ext.h ├── emu-menu-table.c ├── engine-ext.c ├── engine-set.c ├── engine-set.h ├── engine-sub.c ├── engine-sub.h ├── environ-ext.c ├── environ-ext.h ├── exception-ext.c ├── exception-ext.h ├── exception-stk.c ├── exception-sub.c ├── exception-sub.h ├── facility-ext.c ├── facility-ext.h ├── facility-mix.c ├── facility-mix.h ├── facility-stk.c ├── file-ext.c ├── file-ext.h ├── file-mix.c ├── file-mix.h ├── file-stk.c ├── file-sub.c ├── file-sub.h ├── floating-dll.c ├── floating-ext.c ├── floating-ext.h ├── floating-mix.c ├── floating-mix.h ├── forth-83-ext.c ├── forth-83-ext.h ├── forth-83-stk.c ├── forth-usual-ext.c ├── forth-usual-ext.h ├── fpnostack-dll.c ├── fpnostack-ext.c ├── fpnostack-ext.h ├── gforth-dll.c ├── gforth-ext.c ├── gforth-ext.h ├── header-ext.c ├── header-ext.h ├── header-sub.c ├── header-sub.h ├── help-dll.c ├── help-ext.c ├── help-ext.h ├── host-k12.c ├── incl-ext.h ├── incl-mix.h ├── incl-sub.h ├── incl-sup.h ├── lib-sdl.c ├── libltdl │ ├── COPYING.LIB │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── config-h.in │ ├── config.guess │ ├── config.sub │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── configure │ ├── configure.ac │ ├── install-sh │ ├── libltdl │ │ ├── lt__alloc.h │ │ ├── lt__argz_.h │ │ ├── lt__dirent.h │ │ ├── lt__glibc.h │ │ ├── lt__private.h │ │ ├── lt__strl.h │ │ ├── lt_dlloader.h │ │ ├── lt_error.h │ │ ├── lt_system.h │ │ └── slist.h │ ├── loaders │ │ ├── dld_link.c │ │ ├── dlopen.c │ │ ├── dyld.c │ │ ├── load_add_on.c │ │ ├── loadlibrary.c │ │ ├── preopen.c │ │ └── shl_load.c │ ├── lt__alloc.c │ ├── lt__argz.c │ ├── lt__dirent.c │ ├── lt__strl.c │ ├── lt_dlloader.c │ ├── lt_error.c │ ├── ltdl.c │ ├── ltdl.h │ ├── ltmain.sh │ ├── m4 │ │ ├── argz.m4 │ │ ├── libtool.m4 │ │ ├── ltdl.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ └── slist.c ├── lined.c ├── lined.h ├── locals-ext.c ├── locals-ext.h ├── logging.h ├── main-alloc.c ├── main-def.c ├── main-k12.c ├── main-k12.h ├── main-mmap.c ├── main-static.c ├── main-stdc.c ├── main-sub.c ├── main-sub.h ├── memory-alloc-ext.c ├── memory-alloc-ext.h ├── memory-alloc-stk.c ├── memory-sub.c ├── memory-sub.h ├── misc-ext.c ├── misc-ext.h ├── misc-stk.c ├── module-dll.c ├── module-ext.c ├── option-ext.c ├── option-ext.h ├── option-set.c ├── option-set.h ├── os-ctype.c ├── os-ctype.h ├── os-delay.c ├── os-delay.h ├── os-fesetenv.h ├── os-setjmp.h ├── os-string.c ├── os-string.h ├── p4-gettimeofday.c ├── p4-gettimeofday.h ├── pfe-base.h ├── pfe-ext.h ├── pfe-mix.c ├── pfe-mix.h ├── pfe-set.h ├── pfe-sub.h ├── pfe-sup.h ├── pfe.h ├── posix-ext.c ├── posix-ext.h ├── search-order-ext.c ├── search-order-ext.h ├── shell-os-ext.c ├── shell-os-ext.h ├── signals-ext.c ├── signals-ext.h ├── smart-go-dll.c ├── smart-go-ext.c ├── smart-go-ext.h ├── socket-dll.c ├── socket-ext.c ├── stackhelp-dll.c ├── stackhelp-ext.c ├── stackhelp-ext.h ├── stackhelp-stk.c ├── string-ext.c ├── string-ext.h ├── string-stk.c ├── struct-dll.c ├── struct-ext.c ├── struct-ext.h ├── structs-dll.c ├── structs-ext.c ├── system-ext.c ├── system-ext.h ├── term-curses.c ├── term-def.c ├── term-dj.c ├── term-emx.c ├── term-ext.c ├── term-ext.h ├── term-k12.c ├── term-k12.h ├── term-lib.c ├── term-sub.c ├── term-sub.h ├── term-wat.c ├── term-wincon.c ├── term-x11.c ├── termcatch-dll.c ├── termcatch-ext.c ├── toolbelt-dll.c ├── toolbelt-ext.c ├── tools-ext.c ├── tools-ext.h ├── tools-mix.c ├── tools-mix.h ├── tools-sub.c ├── tools-sub.h ├── useful-ext.c ├── useful-ext.h ├── version-sub.c ├── version-sub.h ├── with-spy.c ├── your-ext.c ├── your-ext.h ├── zchar-dll.c └── zchar-ext.c ├── test ├── Makedist.mk ├── Makefile.am ├── Makefile.in ├── anslocal.4th ├── anslocal.fs ├── anslocal.test.ok ├── anslocal.test64.ok ├── anstests1 │ ├── Makefile.am │ ├── Makefile.in │ └── anstests0.6.zip ├── answords.fs ├── arith.4th ├── arith.sh ├── arith.test.ok ├── benchm.blk ├── bubble.fs ├── checkans.4th ├── checkans.fs ├── checkans.nomodules.ok ├── checkans.sh ├── checkans.test.ok ├── checkans.test64.ok ├── compare.4th ├── compare.sh ├── compare.test.ok ├── compspeed.fs ├── core.fr ├── coretest.4th ├── coretest.fs ├── coretest.sh ├── coretest.test.ok ├── dbltest.4th ├── dbltest.fs ├── deferred-x.4th ├── deferred-x.fs ├── deferred-x.test.ok ├── deferred-x.test64.ok ├── deferred.fs ├── defs.4th ├── defs.sh ├── defs.test.ok ├── dstester.fs ├── dstrings-test.fs ├── dstrings.txt ├── environ.4th ├── environ.nomodules.ok ├── environ.sh ├── environ.test.ok ├── environ.test64.ok ├── exceptn.4th ├── exceptn.sh ├── exceptn.test.ok ├── fib.fs ├── file.4th ├── file.sh ├── file.test.ok ├── float.4th ├── float.nomodules.ok ├── float.sh ├── float.test.ok ├── float.test64.ok ├── forth-signal.4th ├── fp-stack.4th ├── fp-stack.fs ├── fp-stack.nomodules.ok ├── fp-stack.test.ok ├── fp-stack.test64.ok ├── fpnostack.4th ├── fpnostack.nomodules.ok ├── fpnostack.sh ├── fpnostack.test.ok ├── fpnostack.test64.ok ├── hashvocdistri.fs ├── intactv.4th ├── locals-ext.4th ├── loop-test.4th ├── loop-test.sh ├── loop-test.test.ok ├── matrix.fs ├── mini-oof.fs ├── moof-exm.fs ├── moofglos.fs ├── number-prefixes.4th ├── number-prefixes.fs ├── number-prefixes.test.ok ├── number-prefixes.test64.ok ├── parse-name.4th ├── parse-name.fs ├── parse-name.test.ok ├── parse-name.test64.ok ├── postpone.4th ├── postpone.fs ├── postpone.sh ├── postpone.test.ok ├── queryapp.4th ├── queryapp.sh ├── queryapp.test.ok ├── queryapp.test64.ok ├── queryapp.txt ├── search-order.4th ├── search-order.fs ├── search-order.sh ├── search-order.test.ok ├── siev.fs ├── sieve.fs ├── sievem.fs ├── sokoban.4th ├── sokoban.fs ├── speedwhile.fs ├── stack.4th ├── stack.sh ├── stack.test.ok ├── string.4th ├── string.sh ├── string.test.ok ├── suite.4th ├── test-num-prefixes.4th ├── test-num-prefixes.fs ├── test-num-prefixes.test.ok ├── test-num-prefixes.test64.ok ├── test-num-prefixes2.4th ├── test-num-prefixes2.fs ├── test-num-prefixes2.test.ok ├── test-num-prefixes2.test64.ok ├── tester.fr ├── tester.fs ├── trydstrings.fs ├── tt.4th ├── tt.fs ├── wordsets.4th ├── wordsets.fs ├── wordsets.nomodules.ok ├── wordsets.sh └── wordsets.test.ok ├── testmodule1 ├── COPYING.ZLIB ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── configure ├── configure.ac ├── testmodule1-dll.c ├── testmodule1-ext.c └── testmodule1.fs ├── testmodule2 ├── COPYING.ZLIB ├── Makefile.in ├── aclocal.m4 ├── configure ├── configure.ac ├── testmodule2-dll.c ├── testmodule2-ext.c └── testmodule2.fs └── uses ├── ac_c_bigendian_cross.m4 ├── ac_c_long_long_.m4 ├── ac_compile_check_sizeof.m4 ├── ac_cond_with.m4 ├── ac_cond_with_level.m4 ├── ac_create_generic_config.m4 ├── ac_create_target_h.m4 ├── ac_define_dir_.m4 ├── ac_define_path_style.m4 ├── ac_define_versionlevel.m4 ├── ac_func_mkdir.m4 ├── ac_func_snprintf.m4 ├── ac_set_default_paths_system.m4 ├── ac_spec_package_version.m4 ├── ac_sys_largefile_sensitive.m4 ├── acx_restrict.m4 ├── ax_c_declare_block.m4 ├── ax_cflags_gcc_option.m4 ├── ax_cflags_no_writable_strings.m4 ├── ax_cflags_strict_prototypes.m4 ├── ax_cflags_warn_all.m4 ├── ax_check_define.m4 ├── ax_check_gnu_dladdr.m4 ├── ax_check_tls_support.m4 ├── ax_configure_args.m4 ├── ax_create_pkgconfig_info.m4 ├── ax_enable_builddir_uname.m4 ├── ax_expand_prefix.m4 ├── ax_prefix_config_h.m4 ├── ax_set_version_info.m4 ├── ax_spec_file.m4 ├── ax_spec_package_version.m4 ├── ax_subst_with.m4 ├── ax_warning_default_pkgconfig.m4 ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh ├── libtool.m4 ├── ltargz.m4 ├── ltconfig ├── ltdl.m4 ├── ltmain.sh ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── missing ├── mkbins.cmd ├── mkinstalldirs ├── patch_libtool_changing_cmds_ifs.m4 ├── patch_libtool_on_darwin_pass_all.m4 ├── patch_libtool_on_darwin_zsh_overquoting.m4 ├── patch_libtool_sys_lib_search_path_spec.m4 └── patch_libtool_to_add_host_cc.m4 /.gitattributes: -------------------------------------------------------------------------------- 1 | *.fs linguist-language=Forth 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.cache 3 | build 4 | Makefile 5 | -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/.settings/org.eclipse.cdt.ui.prefs -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/INSTALL.TXT -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/Makefile.mk -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | make -f Makefile.mk 3 | 4 | 5 | -------------------------------------------------------------------------------- /bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/Makefile.am -------------------------------------------------------------------------------- /bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/Makefile.in -------------------------------------------------------------------------------- /bin/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/aclocal.m4 -------------------------------------------------------------------------------- /bin/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/configure -------------------------------------------------------------------------------- /bin/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/configure.ac -------------------------------------------------------------------------------- /bin/pfe-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/bin/pfe-exec.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/configure.ac -------------------------------------------------------------------------------- /dbk/pfe-fth.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/dbk/pfe-fth.dbk -------------------------------------------------------------------------------- /dbk/pfe-fth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/dbk/pfe-fth.mk -------------------------------------------------------------------------------- /dbk/pfe-words.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbk/wordsets2words.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/dbk/wordsets2words.pl -------------------------------------------------------------------------------- /dbk/xml-c-pfe-doc.e: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env xml-c-pfe-doc 2 | -------------------------------------------------------------------------------- /doc/4ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/4ring.gif -------------------------------------------------------------------------------- /doc/4thtutor.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/4thtutor.ar -------------------------------------------------------------------------------- /doc/Forthprimer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/Forthprimer.pdf -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/PFE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/PFE.css -------------------------------------------------------------------------------- /doc/authors.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/authors.htm -------------------------------------------------------------------------------- /doc/body.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/body.htm -------------------------------------------------------------------------------- /doc/changes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/changes.htm -------------------------------------------------------------------------------- /doc/dirk-zoller-readme.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/dirk-zoller-readme.dbk -------------------------------------------------------------------------------- /doc/doc-index.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/doc-index.dbk -------------------------------------------------------------------------------- /doc/documentation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/documentation.htm -------------------------------------------------------------------------------- /doc/dpans.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/dpans.ar -------------------------------------------------------------------------------- /doc/forth-any-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/forth-any-192.png -------------------------------------------------------------------------------- /doc/forth-pfe-192-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/forth-pfe-192-light.png -------------------------------------------------------------------------------- /doc/forth-pfe-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/forth-pfe-192.png -------------------------------------------------------------------------------- /doc/header-fields.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/header-fields.dbk -------------------------------------------------------------------------------- /doc/help2man.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/help2man.pl -------------------------------------------------------------------------------- /doc/how-to-write-a-pfe-module.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/how-to-write-a-pfe-module.dbk -------------------------------------------------------------------------------- /doc/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/index.htm -------------------------------------------------------------------------------- /doc/internal-decisions-about-headers.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/internal-decisions-about-headers.dbk -------------------------------------------------------------------------------- /doc/known-problems.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/known-problems.dbk -------------------------------------------------------------------------------- /doc/lgpl-license.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/lgpl-license.dbk -------------------------------------------------------------------------------- /doc/lgpl-license.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/lgpl-license.htm -------------------------------------------------------------------------------- /doc/license.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/license.dbk -------------------------------------------------------------------------------- /doc/license.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/license.htm -------------------------------------------------------------------------------- /doc/literature.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/literature.dbk -------------------------------------------------------------------------------- /doc/locals.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/locals.dbk -------------------------------------------------------------------------------- /doc/make-dist.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/make-dist.dbk -------------------------------------------------------------------------------- /doc/makedocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/makedocs.py -------------------------------------------------------------------------------- /doc/pfe-manual.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfe-manual.dbk -------------------------------------------------------------------------------- /doc/pfe-master.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfe-master.odt -------------------------------------------------------------------------------- /doc/pfe.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/pfe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfe.htm -------------------------------------------------------------------------------- /doc/pfedoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/pfedoc/commentmarkup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/commentmarkup.py -------------------------------------------------------------------------------- /doc/pfedoc/dbk2htm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/dbk2htm.py -------------------------------------------------------------------------------- /doc/pfedoc/docbookdocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/docbookdocument.py -------------------------------------------------------------------------------- /doc/pfedoc/forthheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthheader.py -------------------------------------------------------------------------------- /doc/pfedoc/forthmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthmodule.py -------------------------------------------------------------------------------- /doc/pfedoc/forthnotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthnotation.py -------------------------------------------------------------------------------- /doc/pfedoc/forthwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthwords.py -------------------------------------------------------------------------------- /doc/pfedoc/forthwordset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthwordset.py -------------------------------------------------------------------------------- /doc/pfedoc/forthwordsethtmlpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthwordsethtmlpage.py -------------------------------------------------------------------------------- /doc/pfedoc/forthwordsetreference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/forthwordsetreference.py -------------------------------------------------------------------------------- /doc/pfedoc/functionheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/functionheader.py -------------------------------------------------------------------------------- /doc/pfedoc/functionlisthtmlpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/functionlisthtmlpage.py -------------------------------------------------------------------------------- /doc/pfedoc/functionlistreference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/functionlistreference.py -------------------------------------------------------------------------------- /doc/pfedoc/functionprototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/functionprototype.py -------------------------------------------------------------------------------- /doc/pfedoc/htm2dbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/htm2dbk.py -------------------------------------------------------------------------------- /doc/pfedoc/htmldirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/htmldirectory.py -------------------------------------------------------------------------------- /doc/pfedoc/htmldocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/htmldocument.py -------------------------------------------------------------------------------- /doc/pfedoc/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/match.py -------------------------------------------------------------------------------- /doc/pfedoc/odtdocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/odtdocument.py -------------------------------------------------------------------------------- /doc/pfedoc/odttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/odttypes.py -------------------------------------------------------------------------------- /doc/pfedoc/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/options.py -------------------------------------------------------------------------------- /doc/pfedoc/textfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/textfile.py -------------------------------------------------------------------------------- /doc/pfedoc/textfileheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/pfedoc/textfileheader.py -------------------------------------------------------------------------------- /doc/porting-sbr-threading.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/porting-sbr-threading.dbk -------------------------------------------------------------------------------- /doc/posixcalls.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/posixcalls.dbk -------------------------------------------------------------------------------- /doc/quoted-parse-idea.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/quoted-parse-idea.dbk -------------------------------------------------------------------------------- /doc/special-implementation-strategies.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/special-implementation-strategies.dbk -------------------------------------------------------------------------------- /doc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/src/Makefile -------------------------------------------------------------------------------- /doc/src/PFE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/src/PFE.css -------------------------------------------------------------------------------- /doc/statesmart-words.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/statesmart-words.dbk -------------------------------------------------------------------------------- /doc/threading.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/threading.dbk -------------------------------------------------------------------------------- /doc/tuning.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/tuning.dbk -------------------------------------------------------------------------------- /doc/uppercasing.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/uppercasing.dbk -------------------------------------------------------------------------------- /doc/wordset-modules.dbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/doc/wordset-modules.dbk -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/arrays.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/arrays.4th -------------------------------------------------------------------------------- /lib/defer-is.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/defer-is.4th -------------------------------------------------------------------------------- /lib/doermake.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/doermake.4th -------------------------------------------------------------------------------- /lib/easy4th.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/easy4th.f -------------------------------------------------------------------------------- /lib/library.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/library.4th -------------------------------------------------------------------------------- /lib/loading.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/loading.4th -------------------------------------------------------------------------------- /lib/pardot.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/pardot.4th -------------------------------------------------------------------------------- /lib/sh-libs.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/sh-libs.4th -------------------------------------------------------------------------------- /lib/struct.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/lib/struct.4th -------------------------------------------------------------------------------- /mk/Make-H.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/mk/Make-H.pl -------------------------------------------------------------------------------- /mk/Make-H.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/mk/Make-H.py -------------------------------------------------------------------------------- /mk/fb-2-fs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/mk/fb-2-fs.pl -------------------------------------------------------------------------------- /mk/fb-2-fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/mk/fb-2-fs.py -------------------------------------------------------------------------------- /pfe.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe.spec -------------------------------------------------------------------------------- /pfe/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/Makefile.am -------------------------------------------------------------------------------- /pfe/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/Makefile.in -------------------------------------------------------------------------------- /pfe/_missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/_missing.c -------------------------------------------------------------------------------- /pfe/_missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/_missing.h -------------------------------------------------------------------------------- /pfe/_nonansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/_nonansi.h -------------------------------------------------------------------------------- /pfe/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/aclocal.m4 -------------------------------------------------------------------------------- /pfe/assembler-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/assembler-dll.c -------------------------------------------------------------------------------- /pfe/assembler-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/assembler-ext.c -------------------------------------------------------------------------------- /pfe/assembler-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/assembler-ext.h -------------------------------------------------------------------------------- /pfe/block-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-ext.c -------------------------------------------------------------------------------- /pfe/block-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-ext.h -------------------------------------------------------------------------------- /pfe/block-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-mix.c -------------------------------------------------------------------------------- /pfe/block-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-mix.h -------------------------------------------------------------------------------- /pfe/block-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-stk.c -------------------------------------------------------------------------------- /pfe/block-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-sub.c -------------------------------------------------------------------------------- /pfe/block-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/block-sub.h -------------------------------------------------------------------------------- /pfe/cdecl-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/cdecl-ext.c -------------------------------------------------------------------------------- /pfe/cdecl-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/cdecl-ext.h -------------------------------------------------------------------------------- /pfe/cdecl-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/cdecl-stk.c -------------------------------------------------------------------------------- /pfe/chain-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chain-ext.c -------------------------------------------------------------------------------- /pfe/chain-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chain-ext.h -------------------------------------------------------------------------------- /pfe/chain-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chain-stk.c -------------------------------------------------------------------------------- /pfe/chainlist-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chainlist-ext.c -------------------------------------------------------------------------------- /pfe/chainlist-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chainlist-ext.h -------------------------------------------------------------------------------- /pfe/chainlist-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/chainlist-stk.c -------------------------------------------------------------------------------- /pfe/complex-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/complex-dll.c -------------------------------------------------------------------------------- /pfe/complex-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/complex-ext.c -------------------------------------------------------------------------------- /pfe/complex-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/complex-ext.h -------------------------------------------------------------------------------- /pfe/complex-pfe.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfe/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/config.h.in -------------------------------------------------------------------------------- /pfe/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/configure -------------------------------------------------------------------------------- /pfe/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/configure.ac -------------------------------------------------------------------------------- /pfe/core-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-ext.c -------------------------------------------------------------------------------- /pfe/core-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-ext.h -------------------------------------------------------------------------------- /pfe/core-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-mix.c -------------------------------------------------------------------------------- /pfe/core-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-mix.h -------------------------------------------------------------------------------- /pfe/core-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-stk.c -------------------------------------------------------------------------------- /pfe/core-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-sub.c -------------------------------------------------------------------------------- /pfe/core-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/core-sub.h -------------------------------------------------------------------------------- /pfe/debug-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/debug-ext.c -------------------------------------------------------------------------------- /pfe/debug-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/debug-ext.h -------------------------------------------------------------------------------- /pfe/debug-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/debug-stk.c -------------------------------------------------------------------------------- /pfe/def-cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-cell.h -------------------------------------------------------------------------------- /pfe/def-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-check.c -------------------------------------------------------------------------------- /pfe/def-comp-c89.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-comp-c89.h -------------------------------------------------------------------------------- /pfe/def-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-comp.h -------------------------------------------------------------------------------- /pfe/def-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-config.h -------------------------------------------------------------------------------- /pfe/def-const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-const.h -------------------------------------------------------------------------------- /pfe/def-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-gcc.h -------------------------------------------------------------------------------- /pfe/def-limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-limits.h -------------------------------------------------------------------------------- /pfe/def-macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-macro.h -------------------------------------------------------------------------------- /pfe/def-paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-paths.h -------------------------------------------------------------------------------- /pfe/def-pth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-pth.h -------------------------------------------------------------------------------- /pfe/def-regmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-regmacro.h -------------------------------------------------------------------------------- /pfe/def-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-regs.h -------------------------------------------------------------------------------- /pfe/def-regth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-regth.h -------------------------------------------------------------------------------- /pfe/def-restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-restore.h -------------------------------------------------------------------------------- /pfe/def-sbrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-sbrcode.h -------------------------------------------------------------------------------- /pfe/def-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-types.h -------------------------------------------------------------------------------- /pfe/def-words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/def-words.h -------------------------------------------------------------------------------- /pfe/dict-comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dict-comp.c -------------------------------------------------------------------------------- /pfe/dict-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dict-comp.h -------------------------------------------------------------------------------- /pfe/dict-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dict-sub.c -------------------------------------------------------------------------------- /pfe/dict-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dict-sub.h -------------------------------------------------------------------------------- /pfe/dl-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-def.c -------------------------------------------------------------------------------- /pfe/dl-dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-dlfcn.c -------------------------------------------------------------------------------- /pfe/dl-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-ext.c -------------------------------------------------------------------------------- /pfe/dl-hpux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-hpux.c -------------------------------------------------------------------------------- /pfe/dl-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-internal.c -------------------------------------------------------------------------------- /pfe/dl-none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-none.c -------------------------------------------------------------------------------- /pfe/dl-vxworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-vxworks.c -------------------------------------------------------------------------------- /pfe/dl-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dl-win32.c -------------------------------------------------------------------------------- /pfe/double-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-ext.c -------------------------------------------------------------------------------- /pfe/double-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-ext.h -------------------------------------------------------------------------------- /pfe/double-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-mix.c -------------------------------------------------------------------------------- /pfe/double-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-mix.h -------------------------------------------------------------------------------- /pfe/double-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-sub.c -------------------------------------------------------------------------------- /pfe/double-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/double-sub.h -------------------------------------------------------------------------------- /pfe/dstrings-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dstrings-dll.c -------------------------------------------------------------------------------- /pfe/dstrings-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dstrings-ext.c -------------------------------------------------------------------------------- /pfe/dstrings-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/dstrings-ext.h -------------------------------------------------------------------------------- /pfe/edit-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/edit-dll.c -------------------------------------------------------------------------------- /pfe/edit-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/edit-ext.c -------------------------------------------------------------------------------- /pfe/edit-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/edit-ext.h -------------------------------------------------------------------------------- /pfe/emu-menu-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/emu-menu-table.c -------------------------------------------------------------------------------- /pfe/engine-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/engine-ext.c -------------------------------------------------------------------------------- /pfe/engine-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/engine-set.c -------------------------------------------------------------------------------- /pfe/engine-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/engine-set.h -------------------------------------------------------------------------------- /pfe/engine-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/engine-sub.c -------------------------------------------------------------------------------- /pfe/engine-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/engine-sub.h -------------------------------------------------------------------------------- /pfe/environ-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/environ-ext.c -------------------------------------------------------------------------------- /pfe/environ-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/environ-ext.h -------------------------------------------------------------------------------- /pfe/exception-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/exception-ext.c -------------------------------------------------------------------------------- /pfe/exception-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/exception-ext.h -------------------------------------------------------------------------------- /pfe/exception-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/exception-stk.c -------------------------------------------------------------------------------- /pfe/exception-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/exception-sub.c -------------------------------------------------------------------------------- /pfe/exception-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/exception-sub.h -------------------------------------------------------------------------------- /pfe/facility-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/facility-ext.c -------------------------------------------------------------------------------- /pfe/facility-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/facility-ext.h -------------------------------------------------------------------------------- /pfe/facility-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/facility-mix.c -------------------------------------------------------------------------------- /pfe/facility-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/facility-mix.h -------------------------------------------------------------------------------- /pfe/facility-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/facility-stk.c -------------------------------------------------------------------------------- /pfe/file-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-ext.c -------------------------------------------------------------------------------- /pfe/file-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-ext.h -------------------------------------------------------------------------------- /pfe/file-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-mix.c -------------------------------------------------------------------------------- /pfe/file-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-mix.h -------------------------------------------------------------------------------- /pfe/file-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-stk.c -------------------------------------------------------------------------------- /pfe/file-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-sub.c -------------------------------------------------------------------------------- /pfe/file-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/file-sub.h -------------------------------------------------------------------------------- /pfe/floating-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/floating-dll.c -------------------------------------------------------------------------------- /pfe/floating-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/floating-ext.c -------------------------------------------------------------------------------- /pfe/floating-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/floating-ext.h -------------------------------------------------------------------------------- /pfe/floating-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/floating-mix.c -------------------------------------------------------------------------------- /pfe/floating-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/floating-mix.h -------------------------------------------------------------------------------- /pfe/forth-83-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/forth-83-ext.c -------------------------------------------------------------------------------- /pfe/forth-83-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/forth-83-ext.h -------------------------------------------------------------------------------- /pfe/forth-83-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/forth-83-stk.c -------------------------------------------------------------------------------- /pfe/forth-usual-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/forth-usual-ext.c -------------------------------------------------------------------------------- /pfe/forth-usual-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/forth-usual-ext.h -------------------------------------------------------------------------------- /pfe/fpnostack-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/fpnostack-dll.c -------------------------------------------------------------------------------- /pfe/fpnostack-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/fpnostack-ext.c -------------------------------------------------------------------------------- /pfe/fpnostack-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/fpnostack-ext.h -------------------------------------------------------------------------------- /pfe/gforth-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/gforth-dll.c -------------------------------------------------------------------------------- /pfe/gforth-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/gforth-ext.c -------------------------------------------------------------------------------- /pfe/gforth-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/gforth-ext.h -------------------------------------------------------------------------------- /pfe/header-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/header-ext.c -------------------------------------------------------------------------------- /pfe/header-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/header-ext.h -------------------------------------------------------------------------------- /pfe/header-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/header-sub.c -------------------------------------------------------------------------------- /pfe/header-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/header-sub.h -------------------------------------------------------------------------------- /pfe/help-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/help-dll.c -------------------------------------------------------------------------------- /pfe/help-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/help-ext.c -------------------------------------------------------------------------------- /pfe/help-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/help-ext.h -------------------------------------------------------------------------------- /pfe/host-k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/host-k12.c -------------------------------------------------------------------------------- /pfe/incl-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/incl-ext.h -------------------------------------------------------------------------------- /pfe/incl-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/incl-mix.h -------------------------------------------------------------------------------- /pfe/incl-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/incl-sub.h -------------------------------------------------------------------------------- /pfe/incl-sup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/incl-sup.h -------------------------------------------------------------------------------- /pfe/lib-sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/lib-sdl.c -------------------------------------------------------------------------------- /pfe/libltdl/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/COPYING.LIB -------------------------------------------------------------------------------- /pfe/libltdl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/Makefile.am -------------------------------------------------------------------------------- /pfe/libltdl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/Makefile.in -------------------------------------------------------------------------------- /pfe/libltdl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/README -------------------------------------------------------------------------------- /pfe/libltdl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/aclocal.m4 -------------------------------------------------------------------------------- /pfe/libltdl/config-h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config-h.in -------------------------------------------------------------------------------- /pfe/libltdl/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config.guess -------------------------------------------------------------------------------- /pfe/libltdl/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config.sub -------------------------------------------------------------------------------- /pfe/libltdl/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/compile -------------------------------------------------------------------------------- /pfe/libltdl/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/config.guess -------------------------------------------------------------------------------- /pfe/libltdl/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/config.sub -------------------------------------------------------------------------------- /pfe/libltdl/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/depcomp -------------------------------------------------------------------------------- /pfe/libltdl/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/install-sh -------------------------------------------------------------------------------- /pfe/libltdl/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/ltmain.sh -------------------------------------------------------------------------------- /pfe/libltdl/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/config/missing -------------------------------------------------------------------------------- /pfe/libltdl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/configure -------------------------------------------------------------------------------- /pfe/libltdl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/configure.ac -------------------------------------------------------------------------------- /pfe/libltdl/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/install-sh -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__alloc.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__argz_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__argz_.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__dirent.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__glibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__glibc.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__private.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt__strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt__strl.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt_dlloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt_dlloader.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt_error.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/lt_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/lt_system.h -------------------------------------------------------------------------------- /pfe/libltdl/libltdl/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/libltdl/slist.h -------------------------------------------------------------------------------- /pfe/libltdl/loaders/dld_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/dld_link.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/dlopen.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/dyld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/dyld.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/load_add_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/load_add_on.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/loadlibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/loadlibrary.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/preopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/preopen.c -------------------------------------------------------------------------------- /pfe/libltdl/loaders/shl_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/loaders/shl_load.c -------------------------------------------------------------------------------- /pfe/libltdl/lt__alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt__alloc.c -------------------------------------------------------------------------------- /pfe/libltdl/lt__argz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt__argz.c -------------------------------------------------------------------------------- /pfe/libltdl/lt__dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt__dirent.c -------------------------------------------------------------------------------- /pfe/libltdl/lt__strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt__strl.c -------------------------------------------------------------------------------- /pfe/libltdl/lt_dlloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt_dlloader.c -------------------------------------------------------------------------------- /pfe/libltdl/lt_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/lt_error.c -------------------------------------------------------------------------------- /pfe/libltdl/ltdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/ltdl.c -------------------------------------------------------------------------------- /pfe/libltdl/ltdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/ltdl.h -------------------------------------------------------------------------------- /pfe/libltdl/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/ltmain.sh -------------------------------------------------------------------------------- /pfe/libltdl/m4/argz.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/argz.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/libtool.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/ltdl.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/ltoptions.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/ltsugar.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/ltversion.m4 -------------------------------------------------------------------------------- /pfe/libltdl/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /pfe/libltdl/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/missing -------------------------------------------------------------------------------- /pfe/libltdl/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/libltdl/slist.c -------------------------------------------------------------------------------- /pfe/lined.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/lined.c -------------------------------------------------------------------------------- /pfe/lined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/lined.h -------------------------------------------------------------------------------- /pfe/locals-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/locals-ext.c -------------------------------------------------------------------------------- /pfe/locals-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/locals-ext.h -------------------------------------------------------------------------------- /pfe/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/logging.h -------------------------------------------------------------------------------- /pfe/main-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-alloc.c -------------------------------------------------------------------------------- /pfe/main-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-def.c -------------------------------------------------------------------------------- /pfe/main-k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-k12.c -------------------------------------------------------------------------------- /pfe/main-k12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-k12.h -------------------------------------------------------------------------------- /pfe/main-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-mmap.c -------------------------------------------------------------------------------- /pfe/main-static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-static.c -------------------------------------------------------------------------------- /pfe/main-stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-stdc.c -------------------------------------------------------------------------------- /pfe/main-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-sub.c -------------------------------------------------------------------------------- /pfe/main-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/main-sub.h -------------------------------------------------------------------------------- /pfe/memory-alloc-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/memory-alloc-ext.c -------------------------------------------------------------------------------- /pfe/memory-alloc-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/memory-alloc-ext.h -------------------------------------------------------------------------------- /pfe/memory-alloc-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/memory-alloc-stk.c -------------------------------------------------------------------------------- /pfe/memory-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/memory-sub.c -------------------------------------------------------------------------------- /pfe/memory-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/memory-sub.h -------------------------------------------------------------------------------- /pfe/misc-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/misc-ext.c -------------------------------------------------------------------------------- /pfe/misc-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/misc-ext.h -------------------------------------------------------------------------------- /pfe/misc-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/misc-stk.c -------------------------------------------------------------------------------- /pfe/module-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/module-dll.c -------------------------------------------------------------------------------- /pfe/module-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/module-ext.c -------------------------------------------------------------------------------- /pfe/option-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/option-ext.c -------------------------------------------------------------------------------- /pfe/option-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/option-ext.h -------------------------------------------------------------------------------- /pfe/option-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/option-set.c -------------------------------------------------------------------------------- /pfe/option-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/option-set.h -------------------------------------------------------------------------------- /pfe/os-ctype.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfe/os-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-ctype.h -------------------------------------------------------------------------------- /pfe/os-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-delay.c -------------------------------------------------------------------------------- /pfe/os-delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-delay.h -------------------------------------------------------------------------------- /pfe/os-fesetenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-fesetenv.h -------------------------------------------------------------------------------- /pfe/os-setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-setjmp.h -------------------------------------------------------------------------------- /pfe/os-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-string.c -------------------------------------------------------------------------------- /pfe/os-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/os-string.h -------------------------------------------------------------------------------- /pfe/p4-gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/p4-gettimeofday.c -------------------------------------------------------------------------------- /pfe/p4-gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/p4-gettimeofday.h -------------------------------------------------------------------------------- /pfe/pfe-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/pfe-base.h -------------------------------------------------------------------------------- /pfe/pfe-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/pfe-ext.h -------------------------------------------------------------------------------- /pfe/pfe-mix.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfe/pfe-mix.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfe/pfe-set.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /pfe/pfe-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/pfe-sub.h -------------------------------------------------------------------------------- /pfe/pfe-sup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/pfe-sup.h -------------------------------------------------------------------------------- /pfe/pfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/pfe.h -------------------------------------------------------------------------------- /pfe/posix-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/posix-ext.c -------------------------------------------------------------------------------- /pfe/posix-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/posix-ext.h -------------------------------------------------------------------------------- /pfe/search-order-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/search-order-ext.c -------------------------------------------------------------------------------- /pfe/search-order-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/search-order-ext.h -------------------------------------------------------------------------------- /pfe/shell-os-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/shell-os-ext.c -------------------------------------------------------------------------------- /pfe/shell-os-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/shell-os-ext.h -------------------------------------------------------------------------------- /pfe/signals-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/signals-ext.c -------------------------------------------------------------------------------- /pfe/signals-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/signals-ext.h -------------------------------------------------------------------------------- /pfe/smart-go-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/smart-go-dll.c -------------------------------------------------------------------------------- /pfe/smart-go-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/smart-go-ext.c -------------------------------------------------------------------------------- /pfe/smart-go-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/smart-go-ext.h -------------------------------------------------------------------------------- /pfe/socket-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/socket-dll.c -------------------------------------------------------------------------------- /pfe/socket-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/socket-ext.c -------------------------------------------------------------------------------- /pfe/stackhelp-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/stackhelp-dll.c -------------------------------------------------------------------------------- /pfe/stackhelp-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/stackhelp-ext.c -------------------------------------------------------------------------------- /pfe/stackhelp-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/stackhelp-ext.h -------------------------------------------------------------------------------- /pfe/stackhelp-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/stackhelp-stk.c -------------------------------------------------------------------------------- /pfe/string-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/string-ext.c -------------------------------------------------------------------------------- /pfe/string-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/string-ext.h -------------------------------------------------------------------------------- /pfe/string-stk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/string-stk.c -------------------------------------------------------------------------------- /pfe/struct-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/struct-dll.c -------------------------------------------------------------------------------- /pfe/struct-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/struct-ext.c -------------------------------------------------------------------------------- /pfe/struct-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/struct-ext.h -------------------------------------------------------------------------------- /pfe/structs-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/structs-dll.c -------------------------------------------------------------------------------- /pfe/structs-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/structs-ext.c -------------------------------------------------------------------------------- /pfe/system-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/system-ext.c -------------------------------------------------------------------------------- /pfe/system-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/system-ext.h -------------------------------------------------------------------------------- /pfe/term-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-curses.c -------------------------------------------------------------------------------- /pfe/term-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-def.c -------------------------------------------------------------------------------- /pfe/term-dj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-dj.c -------------------------------------------------------------------------------- /pfe/term-emx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-emx.c -------------------------------------------------------------------------------- /pfe/term-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-ext.c -------------------------------------------------------------------------------- /pfe/term-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-ext.h -------------------------------------------------------------------------------- /pfe/term-k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-k12.c -------------------------------------------------------------------------------- /pfe/term-k12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-k12.h -------------------------------------------------------------------------------- /pfe/term-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-lib.c -------------------------------------------------------------------------------- /pfe/term-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-sub.c -------------------------------------------------------------------------------- /pfe/term-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-sub.h -------------------------------------------------------------------------------- /pfe/term-wat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-wat.c -------------------------------------------------------------------------------- /pfe/term-wincon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-wincon.c -------------------------------------------------------------------------------- /pfe/term-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/term-x11.c -------------------------------------------------------------------------------- /pfe/termcatch-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/termcatch-dll.c -------------------------------------------------------------------------------- /pfe/termcatch-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/termcatch-ext.c -------------------------------------------------------------------------------- /pfe/toolbelt-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/toolbelt-dll.c -------------------------------------------------------------------------------- /pfe/toolbelt-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/toolbelt-ext.c -------------------------------------------------------------------------------- /pfe/tools-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-ext.c -------------------------------------------------------------------------------- /pfe/tools-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-ext.h -------------------------------------------------------------------------------- /pfe/tools-mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-mix.c -------------------------------------------------------------------------------- /pfe/tools-mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-mix.h -------------------------------------------------------------------------------- /pfe/tools-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-sub.c -------------------------------------------------------------------------------- /pfe/tools-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/tools-sub.h -------------------------------------------------------------------------------- /pfe/useful-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/useful-ext.c -------------------------------------------------------------------------------- /pfe/useful-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/useful-ext.h -------------------------------------------------------------------------------- /pfe/version-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/version-sub.c -------------------------------------------------------------------------------- /pfe/version-sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/version-sub.h -------------------------------------------------------------------------------- /pfe/with-spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/with-spy.c -------------------------------------------------------------------------------- /pfe/your-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/your-ext.c -------------------------------------------------------------------------------- /pfe/your-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/your-ext.h -------------------------------------------------------------------------------- /pfe/zchar-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/zchar-dll.c -------------------------------------------------------------------------------- /pfe/zchar-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/pfe/zchar-ext.c -------------------------------------------------------------------------------- /test/Makedist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/Makedist.mk -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/Makefile.in -------------------------------------------------------------------------------- /test/anslocal.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anslocal.4th -------------------------------------------------------------------------------- /test/anslocal.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anslocal.fs -------------------------------------------------------------------------------- /test/anslocal.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anslocal.test.ok -------------------------------------------------------------------------------- /test/anslocal.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anslocal.test64.ok -------------------------------------------------------------------------------- /test/anstests1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anstests1/Makefile.am -------------------------------------------------------------------------------- /test/anstests1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anstests1/Makefile.in -------------------------------------------------------------------------------- /test/anstests1/anstests0.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/anstests1/anstests0.6.zip -------------------------------------------------------------------------------- /test/answords.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/answords.fs -------------------------------------------------------------------------------- /test/arith.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/arith.4th -------------------------------------------------------------------------------- /test/arith.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/arith.sh -------------------------------------------------------------------------------- /test/arith.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/arith.test.ok -------------------------------------------------------------------------------- /test/benchm.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/benchm.blk -------------------------------------------------------------------------------- /test/bubble.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/bubble.fs -------------------------------------------------------------------------------- /test/checkans.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.4th -------------------------------------------------------------------------------- /test/checkans.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.fs -------------------------------------------------------------------------------- /test/checkans.nomodules.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.nomodules.ok -------------------------------------------------------------------------------- /test/checkans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.sh -------------------------------------------------------------------------------- /test/checkans.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.test.ok -------------------------------------------------------------------------------- /test/checkans.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/checkans.test64.ok -------------------------------------------------------------------------------- /test/compare.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/compare.4th -------------------------------------------------------------------------------- /test/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/compare.sh -------------------------------------------------------------------------------- /test/compare.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/compare.test.ok -------------------------------------------------------------------------------- /test/compspeed.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/compspeed.fs -------------------------------------------------------------------------------- /test/core.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/core.fr -------------------------------------------------------------------------------- /test/coretest.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/coretest.4th -------------------------------------------------------------------------------- /test/coretest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/coretest.fs -------------------------------------------------------------------------------- /test/coretest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/coretest.sh -------------------------------------------------------------------------------- /test/coretest.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/coretest.test.ok -------------------------------------------------------------------------------- /test/dbltest.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/dbltest.4th -------------------------------------------------------------------------------- /test/dbltest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/dbltest.fs -------------------------------------------------------------------------------- /test/deferred-x.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/deferred-x.4th -------------------------------------------------------------------------------- /test/deferred-x.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/deferred-x.fs -------------------------------------------------------------------------------- /test/deferred-x.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/deferred-x.test.ok -------------------------------------------------------------------------------- /test/deferred-x.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/deferred-x.test64.ok -------------------------------------------------------------------------------- /test/deferred.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/deferred.fs -------------------------------------------------------------------------------- /test/defs.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/defs.4th -------------------------------------------------------------------------------- /test/defs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/defs.sh -------------------------------------------------------------------------------- /test/defs.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/defs.test.ok -------------------------------------------------------------------------------- /test/dstester.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/dstester.fs -------------------------------------------------------------------------------- /test/dstrings-test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/dstrings-test.fs -------------------------------------------------------------------------------- /test/dstrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/dstrings.txt -------------------------------------------------------------------------------- /test/environ.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/environ.4th -------------------------------------------------------------------------------- /test/environ.nomodules.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/environ.nomodules.ok -------------------------------------------------------------------------------- /test/environ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/environ.sh -------------------------------------------------------------------------------- /test/environ.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/environ.test.ok -------------------------------------------------------------------------------- /test/environ.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/environ.test64.ok -------------------------------------------------------------------------------- /test/exceptn.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/exceptn.4th -------------------------------------------------------------------------------- /test/exceptn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/exceptn.sh -------------------------------------------------------------------------------- /test/exceptn.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/exceptn.test.ok -------------------------------------------------------------------------------- /test/fib.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fib.fs -------------------------------------------------------------------------------- /test/file.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/file.4th -------------------------------------------------------------------------------- /test/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/file.sh -------------------------------------------------------------------------------- /test/file.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/file.test.ok -------------------------------------------------------------------------------- /test/float.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/float.4th -------------------------------------------------------------------------------- /test/float.nomodules.ok: -------------------------------------------------------------------------------- 1 | no floating wordset available -------------------------------------------------------------------------------- /test/float.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/float.sh -------------------------------------------------------------------------------- /test/float.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/float.test.ok -------------------------------------------------------------------------------- /test/float.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/float.test64.ok -------------------------------------------------------------------------------- /test/forth-signal.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/forth-signal.4th -------------------------------------------------------------------------------- /test/fp-stack.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fp-stack.4th -------------------------------------------------------------------------------- /test/fp-stack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fp-stack.fs -------------------------------------------------------------------------------- /test/fp-stack.nomodules.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fp-stack.nomodules.ok -------------------------------------------------------------------------------- /test/fp-stack.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fp-stack.test.ok -------------------------------------------------------------------------------- /test/fp-stack.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fp-stack.test64.ok -------------------------------------------------------------------------------- /test/fpnostack.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fpnostack.4th -------------------------------------------------------------------------------- /test/fpnostack.nomodules.ok: -------------------------------------------------------------------------------- 1 | no floating wordset available -------------------------------------------------------------------------------- /test/fpnostack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fpnostack.sh -------------------------------------------------------------------------------- /test/fpnostack.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fpnostack.test.ok -------------------------------------------------------------------------------- /test/fpnostack.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/fpnostack.test64.ok -------------------------------------------------------------------------------- /test/hashvocdistri.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/hashvocdistri.fs -------------------------------------------------------------------------------- /test/intactv.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/intactv.4th -------------------------------------------------------------------------------- /test/locals-ext.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/locals-ext.4th -------------------------------------------------------------------------------- /test/loop-test.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/loop-test.4th -------------------------------------------------------------------------------- /test/loop-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/loop-test.sh -------------------------------------------------------------------------------- /test/loop-test.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/loop-test.test.ok -------------------------------------------------------------------------------- /test/matrix.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/matrix.fs -------------------------------------------------------------------------------- /test/mini-oof.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/mini-oof.fs -------------------------------------------------------------------------------- /test/moof-exm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/moof-exm.fs -------------------------------------------------------------------------------- /test/moofglos.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/moofglos.fs -------------------------------------------------------------------------------- /test/number-prefixes.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/number-prefixes.4th -------------------------------------------------------------------------------- /test/number-prefixes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/number-prefixes.fs -------------------------------------------------------------------------------- /test/number-prefixes.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/number-prefixes.test.ok -------------------------------------------------------------------------------- /test/number-prefixes.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/number-prefixes.test64.ok -------------------------------------------------------------------------------- /test/parse-name.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/parse-name.4th -------------------------------------------------------------------------------- /test/parse-name.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/parse-name.fs -------------------------------------------------------------------------------- /test/parse-name.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/parse-name.test.ok -------------------------------------------------------------------------------- /test/parse-name.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/parse-name.test64.ok -------------------------------------------------------------------------------- /test/postpone.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/postpone.4th -------------------------------------------------------------------------------- /test/postpone.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/postpone.fs -------------------------------------------------------------------------------- /test/postpone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/postpone.sh -------------------------------------------------------------------------------- /test/postpone.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/postpone.test.ok -------------------------------------------------------------------------------- /test/queryapp.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/queryapp.4th -------------------------------------------------------------------------------- /test/queryapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/queryapp.sh -------------------------------------------------------------------------------- /test/queryapp.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/queryapp.test.ok -------------------------------------------------------------------------------- /test/queryapp.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/queryapp.test64.ok -------------------------------------------------------------------------------- /test/queryapp.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | boo 3 | 4 | oops 5 | . 6 | plonk 7 | -------------------------------------------------------------------------------- /test/search-order.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/search-order.4th -------------------------------------------------------------------------------- /test/search-order.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/search-order.fs -------------------------------------------------------------------------------- /test/search-order.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/search-order.sh -------------------------------------------------------------------------------- /test/search-order.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/search-order.test.ok -------------------------------------------------------------------------------- /test/siev.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/siev.fs -------------------------------------------------------------------------------- /test/sieve.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/sieve.fs -------------------------------------------------------------------------------- /test/sievem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/sievem.fs -------------------------------------------------------------------------------- /test/sokoban.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/sokoban.4th -------------------------------------------------------------------------------- /test/sokoban.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/sokoban.fs -------------------------------------------------------------------------------- /test/speedwhile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/speedwhile.fs -------------------------------------------------------------------------------- /test/stack.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/stack.4th -------------------------------------------------------------------------------- /test/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/stack.sh -------------------------------------------------------------------------------- /test/stack.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/stack.test.ok -------------------------------------------------------------------------------- /test/string.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/string.4th -------------------------------------------------------------------------------- /test/string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/string.sh -------------------------------------------------------------------------------- /test/string.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/string.test.ok -------------------------------------------------------------------------------- /test/suite.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/suite.4th -------------------------------------------------------------------------------- /test/test-num-prefixes.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes.4th -------------------------------------------------------------------------------- /test/test-num-prefixes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes.fs -------------------------------------------------------------------------------- /test/test-num-prefixes.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes.test.ok -------------------------------------------------------------------------------- /test/test-num-prefixes.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes.test64.ok -------------------------------------------------------------------------------- /test/test-num-prefixes2.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes2.4th -------------------------------------------------------------------------------- /test/test-num-prefixes2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes2.fs -------------------------------------------------------------------------------- /test/test-num-prefixes2.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes2.test.ok -------------------------------------------------------------------------------- /test/test-num-prefixes2.test64.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/test-num-prefixes2.test64.ok -------------------------------------------------------------------------------- /test/tester.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/tester.fr -------------------------------------------------------------------------------- /test/tester.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/tester.fs -------------------------------------------------------------------------------- /test/trydstrings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/trydstrings.fs -------------------------------------------------------------------------------- /test/tt.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/tt.4th -------------------------------------------------------------------------------- /test/tt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/tt.fs -------------------------------------------------------------------------------- /test/wordsets.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/wordsets.4th -------------------------------------------------------------------------------- /test/wordsets.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/wordsets.fs -------------------------------------------------------------------------------- /test/wordsets.nomodules.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/wordsets.nomodules.ok -------------------------------------------------------------------------------- /test/wordsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/wordsets.sh -------------------------------------------------------------------------------- /test/wordsets.test.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/test/wordsets.test.ok -------------------------------------------------------------------------------- /testmodule1/COPYING.ZLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/COPYING.ZLIB -------------------------------------------------------------------------------- /testmodule1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/Makefile.am -------------------------------------------------------------------------------- /testmodule1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/Makefile.in -------------------------------------------------------------------------------- /testmodule1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/README -------------------------------------------------------------------------------- /testmodule1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/aclocal.m4 -------------------------------------------------------------------------------- /testmodule1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/configure -------------------------------------------------------------------------------- /testmodule1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/configure.ac -------------------------------------------------------------------------------- /testmodule1/testmodule1-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/testmodule1-dll.c -------------------------------------------------------------------------------- /testmodule1/testmodule1-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule1/testmodule1-ext.c -------------------------------------------------------------------------------- /testmodule1/testmodule1.fs: -------------------------------------------------------------------------------- 1 | needs testmodule1-ext 2 | hello 3 | -------------------------------------------------------------------------------- /testmodule2/COPYING.ZLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/COPYING.ZLIB -------------------------------------------------------------------------------- /testmodule2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/Makefile.in -------------------------------------------------------------------------------- /testmodule2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/aclocal.m4 -------------------------------------------------------------------------------- /testmodule2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/configure -------------------------------------------------------------------------------- /testmodule2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/configure.ac -------------------------------------------------------------------------------- /testmodule2/testmodule2-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/testmodule2-dll.c -------------------------------------------------------------------------------- /testmodule2/testmodule2-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/testmodule2/testmodule2-ext.c -------------------------------------------------------------------------------- /testmodule2/testmodule2.fs: -------------------------------------------------------------------------------- 1 | needs testmodule1-ext 2 | hello 3 | -------------------------------------------------------------------------------- /uses/ac_c_bigendian_cross.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_c_bigendian_cross.m4 -------------------------------------------------------------------------------- /uses/ac_c_long_long_.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_c_long_long_.m4 -------------------------------------------------------------------------------- /uses/ac_compile_check_sizeof.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_compile_check_sizeof.m4 -------------------------------------------------------------------------------- /uses/ac_cond_with.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_cond_with.m4 -------------------------------------------------------------------------------- /uses/ac_cond_with_level.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_cond_with_level.m4 -------------------------------------------------------------------------------- /uses/ac_create_generic_config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_create_generic_config.m4 -------------------------------------------------------------------------------- /uses/ac_create_target_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_create_target_h.m4 -------------------------------------------------------------------------------- /uses/ac_define_dir_.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_define_dir_.m4 -------------------------------------------------------------------------------- /uses/ac_define_path_style.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_define_path_style.m4 -------------------------------------------------------------------------------- /uses/ac_define_versionlevel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_define_versionlevel.m4 -------------------------------------------------------------------------------- /uses/ac_func_mkdir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_func_mkdir.m4 -------------------------------------------------------------------------------- /uses/ac_func_snprintf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_func_snprintf.m4 -------------------------------------------------------------------------------- /uses/ac_set_default_paths_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_set_default_paths_system.m4 -------------------------------------------------------------------------------- /uses/ac_spec_package_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_spec_package_version.m4 -------------------------------------------------------------------------------- /uses/ac_sys_largefile_sensitive.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ac_sys_largefile_sensitive.m4 -------------------------------------------------------------------------------- /uses/acx_restrict.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/acx_restrict.m4 -------------------------------------------------------------------------------- /uses/ax_c_declare_block.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_c_declare_block.m4 -------------------------------------------------------------------------------- /uses/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /uses/ax_cflags_no_writable_strings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_cflags_no_writable_strings.m4 -------------------------------------------------------------------------------- /uses/ax_cflags_strict_prototypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_cflags_strict_prototypes.m4 -------------------------------------------------------------------------------- /uses/ax_cflags_warn_all.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_cflags_warn_all.m4 -------------------------------------------------------------------------------- /uses/ax_check_define.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_check_define.m4 -------------------------------------------------------------------------------- /uses/ax_check_gnu_dladdr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_check_gnu_dladdr.m4 -------------------------------------------------------------------------------- /uses/ax_check_tls_support.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_check_tls_support.m4 -------------------------------------------------------------------------------- /uses/ax_configure_args.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_configure_args.m4 -------------------------------------------------------------------------------- /uses/ax_create_pkgconfig_info.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_create_pkgconfig_info.m4 -------------------------------------------------------------------------------- /uses/ax_enable_builddir_uname.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_enable_builddir_uname.m4 -------------------------------------------------------------------------------- /uses/ax_expand_prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_expand_prefix.m4 -------------------------------------------------------------------------------- /uses/ax_prefix_config_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_prefix_config_h.m4 -------------------------------------------------------------------------------- /uses/ax_set_version_info.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_set_version_info.m4 -------------------------------------------------------------------------------- /uses/ax_spec_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_spec_file.m4 -------------------------------------------------------------------------------- /uses/ax_spec_package_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_spec_package_version.m4 -------------------------------------------------------------------------------- /uses/ax_subst_with.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_subst_with.m4 -------------------------------------------------------------------------------- /uses/ax_warning_default_pkgconfig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ax_warning_default_pkgconfig.m4 -------------------------------------------------------------------------------- /uses/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/compile -------------------------------------------------------------------------------- /uses/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/config.guess -------------------------------------------------------------------------------- /uses/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/config.sub -------------------------------------------------------------------------------- /uses/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/depcomp -------------------------------------------------------------------------------- /uses/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/install-sh -------------------------------------------------------------------------------- /uses/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/libtool.m4 -------------------------------------------------------------------------------- /uses/ltargz.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltargz.m4 -------------------------------------------------------------------------------- /uses/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltconfig -------------------------------------------------------------------------------- /uses/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltdl.m4 -------------------------------------------------------------------------------- /uses/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltmain.sh -------------------------------------------------------------------------------- /uses/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltoptions.m4 -------------------------------------------------------------------------------- /uses/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltsugar.m4 -------------------------------------------------------------------------------- /uses/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/ltversion.m4 -------------------------------------------------------------------------------- /uses/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/lt~obsolete.m4 -------------------------------------------------------------------------------- /uses/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/missing -------------------------------------------------------------------------------- /uses/mkbins.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/mkbins.cmd -------------------------------------------------------------------------------- /uses/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/mkinstalldirs -------------------------------------------------------------------------------- /uses/patch_libtool_changing_cmds_ifs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/patch_libtool_changing_cmds_ifs.m4 -------------------------------------------------------------------------------- /uses/patch_libtool_on_darwin_pass_all.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/patch_libtool_on_darwin_pass_all.m4 -------------------------------------------------------------------------------- /uses/patch_libtool_on_darwin_zsh_overquoting.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/patch_libtool_on_darwin_zsh_overquoting.m4 -------------------------------------------------------------------------------- /uses/patch_libtool_sys_lib_search_path_spec.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/patch_libtool_sys_lib_search_path_spec.m4 -------------------------------------------------------------------------------- /uses/patch_libtool_to_add_host_cc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdraheim/pfe/HEAD/uses/patch_libtool_to_add_host_cc.m4 --------------------------------------------------------------------------------