├── .gitignore ├── LICENSE ├── README.md ├── j.c ├── j.h ├── j.orig.c └── makefile /.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | j 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/README.md -------------------------------------------------------------------------------- /j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/j.c -------------------------------------------------------------------------------- /j.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/j.h -------------------------------------------------------------------------------- /j.orig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/j.orig.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelas/ooj/HEAD/makefile --------------------------------------------------------------------------------