├── AUTHORS ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── config.guess ├── config.status ├── config.sub ├── configure ├── configure.in ├── depcomp ├── install-sh ├── libtool ├── ltmain.sh ├── missing └── src ├── Makefile.am ├── Makefile.in ├── apr_ring.h ├── config.h.in ├── example ├── Makefile.am ├── Makefile.in ├── calculator.c ├── calculator_test.c ├── database.h ├── mock_test.c ├── product_database.c ├── product_database_test.c ├── runtests.c └── string_test.c ├── lcut.c └── lcut.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/config.guess -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/config.status -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/configure.in -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/install-sh -------------------------------------------------------------------------------- /libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/libtool -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/apr_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/apr_ring.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/Makefile.am -------------------------------------------------------------------------------- /src/example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/Makefile.in -------------------------------------------------------------------------------- /src/example/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/calculator.c -------------------------------------------------------------------------------- /src/example/calculator_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/calculator_test.c -------------------------------------------------------------------------------- /src/example/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/database.h -------------------------------------------------------------------------------- /src/example/mock_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/mock_test.c -------------------------------------------------------------------------------- /src/example/product_database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/product_database.c -------------------------------------------------------------------------------- /src/example/product_database_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/product_database_test.c -------------------------------------------------------------------------------- /src/example/runtests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/runtests.c -------------------------------------------------------------------------------- /src/example/string_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/example/string_test.c -------------------------------------------------------------------------------- /src/lcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/lcut.c -------------------------------------------------------------------------------- /src/lcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigwhite/lcut/HEAD/src/lcut.h --------------------------------------------------------------------------------