├── .gitignore ├── LICENSE ├── Makefile ├── queue.c ├── queue.h ├── queue_internal.h └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/Makefile -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/queue.c -------------------------------------------------------------------------------- /queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/queue.h -------------------------------------------------------------------------------- /queue_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/queue_internal.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmick0/toy-queue/HEAD/test.c --------------------------------------------------------------------------------