├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Makefile └── simple.c ├── src └── queue.h └── tests ├── Makefile └── check_queue.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.out 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/examples/simple.c -------------------------------------------------------------------------------- /src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/src/queue.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/check_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxyng/queue/HEAD/tests/check_queue.c --------------------------------------------------------------------------------