├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── getopt.c ├── getopt.h ├── getopt_long_tests.cpp ├── getopt_tests.cpp ├── main.c ├── main.cpp ├── testfx.cpp ├── testfx.h └── testsupport.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/README.md -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/getopt.c -------------------------------------------------------------------------------- /getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/getopt.h -------------------------------------------------------------------------------- /getopt_long_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/getopt_long_tests.cpp -------------------------------------------------------------------------------- /getopt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/getopt_tests.cpp -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/main.c -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/main.cpp -------------------------------------------------------------------------------- /testfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/testfx.cpp -------------------------------------------------------------------------------- /testfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/testfx.h -------------------------------------------------------------------------------- /testsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimgr/getopt_port/HEAD/testsupport.h --------------------------------------------------------------------------------