├── .gitignore ├── LICENSE ├── Makefile ├── README ├── ching.6 ├── ching.h ├── ching.sh ├── cno └── ching.cno.c ├── hexagrams ├── macros └── phx ├── ching.phx.c └── pathnames.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/README -------------------------------------------------------------------------------- /ching.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/ching.6 -------------------------------------------------------------------------------- /ching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/ching.h -------------------------------------------------------------------------------- /ching.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/ching.sh -------------------------------------------------------------------------------- /cno/ching.cno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/cno/ching.cno.c -------------------------------------------------------------------------------- /hexagrams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/hexagrams -------------------------------------------------------------------------------- /macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/macros -------------------------------------------------------------------------------- /phx/ching.phx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/phx/ching.phx.c -------------------------------------------------------------------------------- /phx/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floren/ching/HEAD/phx/pathnames.h --------------------------------------------------------------------------------