├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cfgpath.h ├── shlobj.h ├── test-linux.c └── test-win.c /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/README.md -------------------------------------------------------------------------------- /cfgpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/cfgpath.h -------------------------------------------------------------------------------- /shlobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/shlobj.h -------------------------------------------------------------------------------- /test-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/test-linux.c -------------------------------------------------------------------------------- /test-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/cfgpath/HEAD/test-win.c --------------------------------------------------------------------------------