├── .gitignore ├── .gitmodules ├── Makefile.am ├── autogen.sh ├── configure.ac ├── stool.xcodeproj └── project.pbxproj └── stool ├── Makefile.am ├── all_stool.h ├── main.c ├── stool.c ├── stool.h └── structures.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.o 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=stool 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/configure.ac -------------------------------------------------------------------------------- /stool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /stool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/Makefile.am -------------------------------------------------------------------------------- /stool/all_stool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/all_stool.h -------------------------------------------------------------------------------- /stool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/main.c -------------------------------------------------------------------------------- /stool/stool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/stool.c -------------------------------------------------------------------------------- /stool/stool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/stool.h -------------------------------------------------------------------------------- /stool/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/stool/HEAD/stool/structures.h --------------------------------------------------------------------------------