├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pc-test.c ├── queue.c └── queue.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.o.d 3 | pc-test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/README.md -------------------------------------------------------------------------------- /pc-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/pc-test.c -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/queue.c -------------------------------------------------------------------------------- /queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/hungry-birds/HEAD/queue.h --------------------------------------------------------------------------------