├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── argparse.c ├── argparse.h └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/README.md -------------------------------------------------------------------------------- /argparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/argparse.c -------------------------------------------------------------------------------- /argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/argparse.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhcoding/sshpass-win32/HEAD/main.c --------------------------------------------------------------------------------