├── .github └── workflows │ ├── clang-linux.yml │ ├── clang.yml │ ├── gcc.yml │ └── msvc.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── dev-mode.cmake ├── install-config.cmake ├── install-rules.cmake ├── prelude.cmake ├── project-is-top-level.cmake └── variables.cmake ├── include └── argz │ └── argz.hpp └── src └── Main.cpp /.github/workflows/clang-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/.github/workflows/clang-linux.yml -------------------------------------------------------------------------------- /.github/workflows/clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/.github/workflows/clang.yml -------------------------------------------------------------------------------- /.github/workflows/gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/.github/workflows/gcc.yml -------------------------------------------------------------------------------- /.github/workflows/msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/.github/workflows/msvc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *build/ 2 | *.vs 3 | .DS_Store -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/README.md -------------------------------------------------------------------------------- /cmake/dev-mode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/cmake/dev-mode.cmake -------------------------------------------------------------------------------- /cmake/install-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/argzTargets.cmake") -------------------------------------------------------------------------------- /cmake/install-rules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/cmake/install-rules.cmake -------------------------------------------------------------------------------- /cmake/prelude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/cmake/prelude.cmake -------------------------------------------------------------------------------- /cmake/project-is-top-level.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/cmake/project-is-top-level.cmake -------------------------------------------------------------------------------- /cmake/variables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/cmake/variables.cmake -------------------------------------------------------------------------------- /include/argz/argz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/include/argz/argz.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenberry/argz/HEAD/src/Main.cpp --------------------------------------------------------------------------------