├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | /speedtest_cli 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haibbo/speedtest-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haibbo/speedtest-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haibbo/speedtest-cli/HEAD/README.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haibbo/speedtest-cli/HEAD/main.c --------------------------------------------------------------------------------