├── .lvimrc ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README.md ├── bootstrap ├── config.guess ├── config.sub ├── configure.ac ├── debian ├── changelog ├── control ├── copyright ├── gitlab-ci.yml ├── rules ├── sdate.lintian-overrides ├── source │ └── format └── tests │ ├── control │ └── sdate ├── doc ├── Makefile.am └── sdate.1 ├── libsdate.c ├── localtime.c ├── scripts ├── Makefile.am ├── instdebug └── sdate.in ├── simple.c ├── stamp-h.in ├── test ├── day ├── enum └── enum.sh ├── wrapawk └── wrapfunc.inp /.lvimrc: -------------------------------------------------------------------------------- 1 | set ts=8 sw=2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/bootstrap -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/config.sub -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/gitlab-ci.yml -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/sdate.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/sdate.lintian-overrides -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/tests/control -------------------------------------------------------------------------------- /debian/tests/sdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/debian/tests/sdate -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/sdate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/doc/sdate.1 -------------------------------------------------------------------------------- /libsdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/libsdate.c -------------------------------------------------------------------------------- /localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/localtime.c -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/instdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/scripts/instdebug -------------------------------------------------------------------------------- /scripts/sdate.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/scripts/sdate.in -------------------------------------------------------------------------------- /simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/simple.c -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/test/day -------------------------------------------------------------------------------- /test/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/test/enum -------------------------------------------------------------------------------- /test/enum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/test/enum.sh -------------------------------------------------------------------------------- /wrapawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/wrapawk -------------------------------------------------------------------------------- /wrapfunc.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df7cb/sdate/HEAD/wrapfunc.inp --------------------------------------------------------------------------------