├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── constants.h ├── diff.c ├── diff.h ├── json.c ├── json.h ├── main.c ├── server.c └── server.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/README.md -------------------------------------------------------------------------------- /constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/constants.h -------------------------------------------------------------------------------- /diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/diff.c -------------------------------------------------------------------------------- /diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/diff.h -------------------------------------------------------------------------------- /json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/json.c -------------------------------------------------------------------------------- /json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/json.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/main.c -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liesen/spotify-api-server/HEAD/server.h --------------------------------------------------------------------------------