├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── aminclude.am ├── autogen.sh ├── configure.ac ├── doxygen.cfg ├── include ├── Makefile.am ├── basedir.h └── basedir_fs.h ├── m4 ├── attributes.m4 └── doxygen.m4 ├── pkgconfig ├── .gitignore ├── libxdg-basedir-uninstalled.pc.in └── libxdg-basedir.pc.in ├── src ├── .gitignore ├── Makefile.am └── basedir.c └── tests ├── .gitignore ├── Makefile.am ├── query-harness.sh ├── querycd.1 ├── querycd.2 ├── querycd.3 ├── querycd.4 ├── querycd.5 ├── querycf.1 ├── querycf.2 ├── querycs.1 ├── querycs.2 ├── querycs.3 ├── querycs.4 ├── querycs.5 ├── querydd.1 ├── querydd.2 ├── querydd.3 ├── querydd.4 ├── querydd.5 ├── querydf.1 ├── querydf.2 ├── querydh.1 ├── querydh.2 ├── querydh.3 ├── queryds.1 ├── queryds.2 ├── queryds.3 ├── queryds.4 ├── queryds.5 ├── queryds.6 ├── queryrd.1 ├── queryrd.2 ├── testdump.c ├── testfind.c └── testquery.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/README.md -------------------------------------------------------------------------------- /aminclude.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/aminclude.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/configure.ac -------------------------------------------------------------------------------- /doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/doxygen.cfg -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /include/basedir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/include/basedir.h -------------------------------------------------------------------------------- /include/basedir_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/include/basedir_fs.h -------------------------------------------------------------------------------- /m4/attributes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/m4/attributes.m4 -------------------------------------------------------------------------------- /m4/doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/m4/doxygen.m4 -------------------------------------------------------------------------------- /pkgconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/pkgconfig/.gitignore -------------------------------------------------------------------------------- /pkgconfig/libxdg-basedir-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/pkgconfig/libxdg-basedir-uninstalled.pc.in -------------------------------------------------------------------------------- /pkgconfig/libxdg-basedir.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/pkgconfig/libxdg-basedir.pc.in -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/basedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/src/basedir.c -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/query-harness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/query-harness.sh -------------------------------------------------------------------------------- /tests/querycd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycd.1 -------------------------------------------------------------------------------- /tests/querycd.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycd.2 -------------------------------------------------------------------------------- /tests/querycd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycd.3 -------------------------------------------------------------------------------- /tests/querycd.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycd.4 -------------------------------------------------------------------------------- /tests/querycd.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycd.5 -------------------------------------------------------------------------------- /tests/querycf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycf.1 -------------------------------------------------------------------------------- /tests/querycf.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycf.2 -------------------------------------------------------------------------------- /tests/querycs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycs.1 -------------------------------------------------------------------------------- /tests/querycs.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycs.2 -------------------------------------------------------------------------------- /tests/querycs.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycs.3 -------------------------------------------------------------------------------- /tests/querycs.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycs.4 -------------------------------------------------------------------------------- /tests/querycs.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querycs.5 -------------------------------------------------------------------------------- /tests/querydd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydd.1 -------------------------------------------------------------------------------- /tests/querydd.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydd.2 -------------------------------------------------------------------------------- /tests/querydd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydd.3 -------------------------------------------------------------------------------- /tests/querydd.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydd.4 -------------------------------------------------------------------------------- /tests/querydd.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydd.5 -------------------------------------------------------------------------------- /tests/querydf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydf.1 -------------------------------------------------------------------------------- /tests/querydf.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydf.2 -------------------------------------------------------------------------------- /tests/querydh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydh.1 -------------------------------------------------------------------------------- /tests/querydh.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydh.2 -------------------------------------------------------------------------------- /tests/querydh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/querydh.3 -------------------------------------------------------------------------------- /tests/queryds.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.1 -------------------------------------------------------------------------------- /tests/queryds.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.2 -------------------------------------------------------------------------------- /tests/queryds.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.3 -------------------------------------------------------------------------------- /tests/queryds.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.4 -------------------------------------------------------------------------------- /tests/queryds.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.5 -------------------------------------------------------------------------------- /tests/queryds.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryds.6 -------------------------------------------------------------------------------- /tests/queryrd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryrd.1 -------------------------------------------------------------------------------- /tests/queryrd.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/queryrd.2 -------------------------------------------------------------------------------- /tests/testdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/testdump.c -------------------------------------------------------------------------------- /tests/testfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/testfind.c -------------------------------------------------------------------------------- /tests/testquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnev/libxdg-basedir/HEAD/tests/testquery.c --------------------------------------------------------------------------------