├── .cvsignore ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── GNUmakefile ├── LICENSE ├── Makefile ├── Makefile.main ├── README.md ├── debian ├── changelog ├── control ├── copyright ├── libyascreen-dev.dirs ├── libyascreen-dev.install ├── libyascreen0.dirs ├── libyascreen0.install ├── libyascreen0.symbols ├── rules ├── source │ └── format ├── upstream │ ├── metadata │ └── signing-key.asc └── watch ├── fedora └── yascreen.spec ├── yascreen.c ├── yascreen.h ├── yascreen.pc.in ├── yascreen.vers ├── yascreen_feed.c └── yastest.c /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/.cvsignore -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/Makefile.main -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libyascreen-dev.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/libyascreen-dev.dirs -------------------------------------------------------------------------------- /debian/libyascreen-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/libyascreen-dev.install -------------------------------------------------------------------------------- /debian/libyascreen0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /debian/libyascreen0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/libyascreen0.install -------------------------------------------------------------------------------- /debian/libyascreen0.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/libyascreen0.symbols -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/debian/watch -------------------------------------------------------------------------------- /fedora/yascreen.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/fedora/yascreen.spec -------------------------------------------------------------------------------- /yascreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yascreen.c -------------------------------------------------------------------------------- /yascreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yascreen.h -------------------------------------------------------------------------------- /yascreen.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yascreen.pc.in -------------------------------------------------------------------------------- /yascreen.vers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yascreen.vers -------------------------------------------------------------------------------- /yascreen_feed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yascreen_feed.c -------------------------------------------------------------------------------- /yastest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbonev/yascreen/HEAD/yastest.c --------------------------------------------------------------------------------