├── LICENSE ├── Makefile ├── README.md ├── inc └── toaster.h └── src ├── test.c └── toaster.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/README.md -------------------------------------------------------------------------------- /inc/toaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/inc/toaster.h -------------------------------------------------------------------------------- /src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/src/test.c -------------------------------------------------------------------------------- /src/toaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeyakovenko/toaster/HEAD/src/toaster.c --------------------------------------------------------------------------------