├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── RELNOTES.md ├── code-of-conduct.txt ├── doc ├── MANUAL.txt ├── lethe.1 └── todo.txt ├── etc └── gustave-dore-dante-and-the-river-of-lethe.png └── src ├── .ivk ├── BIN_DIRS ├── FORGE_TYPES ├── Forgefile.hsl ├── PROJECTS ├── forgeutils ├── install.hsl └── toolset.hsl ├── lethe.h ├── lethe_drop.c ├── lethe_drop.h ├── lethe_error.c ├── lethe_error.h ├── lethe_ldist.c ├── lethe_ldist.h ├── lethe_libc.c ├── lethe_libc.h ├── lethe_mkpath.c ├── lethe_mkpath.h ├── lethe_option.c ├── lethe_option.h ├── lethe_random.c ├── lethe_random.h ├── lethe_strglob.c ├── lethe_strglob.h ├── lethe_types.h ├── main.c └── test ├── .ivk ├── Forgefile.hsl ├── dynrand ├── .ivk ├── Forgefile.hsl └── main.c └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/README.md -------------------------------------------------------------------------------- /RELNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/RELNOTES.md -------------------------------------------------------------------------------- /code-of-conduct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/code-of-conduct.txt -------------------------------------------------------------------------------- /doc/MANUAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/doc/MANUAL.txt -------------------------------------------------------------------------------- /doc/lethe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/doc/lethe.1 -------------------------------------------------------------------------------- /doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/doc/todo.txt -------------------------------------------------------------------------------- /etc/gustave-dore-dante-and-the-river-of-lethe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/etc/gustave-dore-dante-and-the-river-of-lethe.png -------------------------------------------------------------------------------- /src/.ivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/.ivk -------------------------------------------------------------------------------- /src/BIN_DIRS: -------------------------------------------------------------------------------- 1 | ../lib 2 | ../bin 3 | -------------------------------------------------------------------------------- /src/FORGE_TYPES: -------------------------------------------------------------------------------- 1 | lib 2 | tool 3 | -------------------------------------------------------------------------------- /src/Forgefile.hsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/Forgefile.hsl -------------------------------------------------------------------------------- /src/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/PROJECTS -------------------------------------------------------------------------------- /src/forgeutils/install.hsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/forgeutils/install.hsl -------------------------------------------------------------------------------- /src/forgeutils/toolset.hsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/forgeutils/toolset.hsl -------------------------------------------------------------------------------- /src/lethe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe.h -------------------------------------------------------------------------------- /src/lethe_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_drop.c -------------------------------------------------------------------------------- /src/lethe_drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_drop.h -------------------------------------------------------------------------------- /src/lethe_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_error.c -------------------------------------------------------------------------------- /src/lethe_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_error.h -------------------------------------------------------------------------------- /src/lethe_ldist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_ldist.c -------------------------------------------------------------------------------- /src/lethe_ldist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_ldist.h -------------------------------------------------------------------------------- /src/lethe_libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_libc.c -------------------------------------------------------------------------------- /src/lethe_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_libc.h -------------------------------------------------------------------------------- /src/lethe_mkpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_mkpath.c -------------------------------------------------------------------------------- /src/lethe_mkpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_mkpath.h -------------------------------------------------------------------------------- /src/lethe_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_option.c -------------------------------------------------------------------------------- /src/lethe_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_option.h -------------------------------------------------------------------------------- /src/lethe_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_random.c -------------------------------------------------------------------------------- /src/lethe_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_random.h -------------------------------------------------------------------------------- /src/lethe_strglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_strglob.c -------------------------------------------------------------------------------- /src/lethe_strglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_strglob.h -------------------------------------------------------------------------------- /src/lethe_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/lethe_types.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/main.c -------------------------------------------------------------------------------- /src/test/.ivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/.ivk -------------------------------------------------------------------------------- /src/test/Forgefile.hsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/Forgefile.hsl -------------------------------------------------------------------------------- /src/test/dynrand/.ivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/dynrand/.ivk -------------------------------------------------------------------------------- /src/test/dynrand/Forgefile.hsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/dynrand/Forgefile.hsl -------------------------------------------------------------------------------- /src/test/dynrand/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/dynrand/main.c -------------------------------------------------------------------------------- /src/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-santiago/lethe/HEAD/src/test/main.c --------------------------------------------------------------------------------