├── .drone.yml ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── GNUmakefile ├── INSTALL ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── contrib ├── Makefile.am ├── tzconv.c └── tzconv.m ├── data ├── Makefile.am ├── locale ├── snarf-ummulqura.R └── ummulqura.tab ├── info ├── Makefile.am ├── author.h2m ├── dadd.name ├── dateutils.man ├── dateutils.texi ├── dconv.name ├── ddiff.name ├── dgrep.name ├── dround.name ├── dseq.name ├── dtest.name ├── dzone.name ├── format-ddiff.texi ├── format.texi ├── genh2m.sh ├── gentexi.sh ├── locale.texi ├── strptime.name ├── texi2h2m.sh ├── units.texi └── zone.texi ├── lib ├── Makefile.am ├── bizda.c ├── boops.h ├── daisy.c ├── date-core-private.h ├── date-core-strpf.c ├── date-core-strpf.h ├── date-core.c ├── date-core.h ├── dt-core-private.h ├── dt-core-strpf.c ├── dt-core-strpf.h ├── dt-core-tz-glue.c ├── dt-core-tz-glue.h ├── dt-core.c ├── dt-core.h ├── dt-locale.c ├── dt-locale.h ├── fmt-special.gperf ├── generics.h ├── gmtime.h ├── iata.tzminfo ├── icao.tzminfo ├── leap-seconds.def ├── leap-seconds.h ├── leap-seconds.list ├── leaps.c ├── leaps.h ├── ltrcc.c ├── ltrcc.yuck ├── mic.tzminfo ├── nifty.h ├── strops.c ├── strops.h ├── testlib.c ├── time-core-private.h ├── time-core-strpf.c ├── time-core-strpf.h ├── time-core.c ├── time-core.h ├── token.c ├── token.h ├── tzmap.c ├── tzmap.h ├── tzmap.yuck ├── tzraw.c ├── tzraw.h ├── ummulqura.c ├── version.c.in ├── version.h ├── yd.c ├── ymcw.c ├── ymd.c └── ywd.c ├── m4 ├── ax_zoneinfo.m4 ├── clitosis.m4 ├── sxe-compiler.m4 ├── sxe-libtool.m4 ├── sxe-linker.m4 ├── sxe-matlab.m4 ├── sxe-mmap.m4 └── yuck.m4 ├── src ├── Makefile.am ├── alist.c ├── alist.h ├── dadd.c ├── dadd.yuck ├── dconv.c ├── dconv.yuck ├── ddiff.c ├── ddiff.yuck ├── dexpr-parser.y ├── dexpr-scanner.l ├── dexpr.c ├── dexpr.h ├── dgrep.c ├── dgrep.yuck ├── dround.c ├── dround.yuck ├── dseq.c ├── dseq.yuck ├── dsort.c ├── dsort.yuck ├── dt-io-zone.c ├── dt-io-zone.h ├── dt-io.c ├── dt-io.h ├── dtest.c ├── dtest.yuck ├── dzone.c ├── dzone.yuck ├── prchunk.c ├── prchunk.h ├── strpdt-special.gperf ├── strptime.c └── strptime.yuck ├── test ├── Makefile.am ├── add.yd-1d.ctst ├── add.yd-1w.ctst ├── add.yd-1y.ctst ├── add.ymcw-1d.ctst ├── add.ymcw-1w.ctst ├── add.ymcw-1y.ctst ├── add.ymd-1d.ctst ├── add.ymd-1w.ctst ├── add.ymd-1y.ctst ├── add.ywd-1d.ctst ├── add.ywd-1w.ctst ├── add.ywd-1y.ctst ├── basic_get_dom_wday.c ├── basic_get_jan01_wday.c ├── basic_md_get_yday.c ├── basic_ymd_get_wday.c ├── caev_01.txt ├── caev_02.txt ├── clitosis.am ├── clitosis.c ├── clitosis.yuck ├── convt.yd-ymcw.ctst ├── convt.yd-ymd.ctst ├── convt.yd-ywd.ctst ├── convt.ymcw-yd.ctst ├── convt.ymcw-ymd.ctst ├── convt.ymcw-ywd.ctst ├── convt.ymd-yd.ctst ├── convt.ymd-ymcw.ctst ├── convt.ymd-ywd.ctst ├── convt.ywd-yd.ctst ├── convt.ywd-ymcw.ctst ├── convt.ywd-ymd.ctst ├── dadd.001.ctst ├── dadd.002.ctst ├── dadd.003.ctst ├── dadd.004.ctst ├── dadd.005.ctst ├── dadd.006.ctst ├── dadd.007.ctst ├── dadd.008.ctst ├── dadd.009.ctst ├── dadd.010.ctst ├── dadd.011.ctst ├── dadd.012.ctst ├── dadd.013.ctst ├── dadd.014.ctst ├── dadd.015.ctst ├── dadd.016.ctst ├── dadd.017.ctst ├── dadd.018.ctst ├── dadd.019.ctst ├── dadd.020.ctst ├── dadd.021.ctst ├── dadd.022.ctst ├── dadd.023.ctst ├── dadd.024.ctst ├── dadd.025.ctst ├── dadd.026.ctst ├── dadd.027.ctst ├── dadd.028.ctst ├── dadd.029.ctst ├── dadd.030.ctst ├── dadd.031.ctst ├── dadd.032.ctst ├── dadd.033.ctst ├── dadd.034.ctst ├── dadd.035.ctst ├── dadd.036.ctst ├── dadd.037.ctst ├── dadd.038.ctst ├── dadd.039.ctst ├── dadd.040.ctst ├── dadd.041.ctst ├── dadd.042.ctst ├── dadd.043.ctst ├── dadd.044.ctst ├── dadd.045.ctst ├── dadd.046.ctst ├── dadd.047.ctst ├── dadd.048.ctst ├── dadd.049.ctst ├── dadd.050.ctst ├── dadd.051.ctst ├── dadd.052.ctst ├── dadd.053.ctst ├── dadd.054.ctst ├── dadd.055.ctst ├── dadd.056.ctst ├── dadd.057.ctst ├── dadd.058.ctst ├── dadd.059.ctst ├── dadd.060.ctst ├── dadd.061.ctst ├── dadd.062.ctst ├── dadd.063.ctst ├── dadd.064.ctst ├── dadd.065.ctst ├── dadd.066.ctst ├── dadd.067.ctst ├── dadd.068.ctst ├── dadd.069.ctst ├── dadd.070.ctst ├── dadd.071.ctst ├── dadd.072.ctst ├── dadd.073.ctst ├── dadd.074.ctst ├── dadd.075.ctst ├── dadd.076.ctst ├── dadd.077.ctst ├── dadd.078.ctst ├── dadd.079.ctst ├── dadd.080.ctst ├── dadd.081.ctst ├── dadd.082.ctst ├── dadd.083.ctst ├── dadd.084.ctst ├── dadd.085.ctst ├── dadd.086.ctst ├── dadd.087.ctst ├── dadd.088.ctst ├── dadd.089.ctst ├── dadd.090.ctst ├── dadd.090.dat ├── dadd.091.ctst ├── dadd.092.ctst ├── dadd.093.ctst ├── dadd.094.ctst ├── dadd.095.ctst ├── dadd.096.ctst ├── dadd.097.ctst ├── dadd.098.ctst ├── dadd.099.ctst ├── dadd.100.ctst ├── dadd.101.ctst ├── dadd.102.ctst ├── dadd.103.ctst ├── dconv-batch.1.sh ├── dconv-batch.2.sh ├── dconv.001.ctst ├── dconv.002.ctst ├── dconv.003.ctst ├── dconv.004.ctst ├── dconv.005.ctst ├── dconv.006.ctst ├── dconv.007.ctst ├── dconv.008.ctst ├── dconv.009.ctst ├── dconv.010.ctst ├── dconv.011.ctst ├── dconv.012.ctst ├── dconv.013.ctst ├── dconv.014.ctst ├── dconv.015.ctst ├── dconv.016.ctst ├── dconv.017.ctst ├── dconv.018.ctst ├── dconv.019.ctst ├── dconv.020.ctst ├── dconv.021.ctst ├── dconv.022.ctst ├── dconv.023.ctst ├── dconv.024.ctst ├── dconv.025.ctst ├── dconv.026.ctst ├── dconv.027.ctst ├── dconv.028.ctst ├── dconv.029.ctst ├── dconv.030.ctst ├── dconv.031.ctst ├── dconv.032.ctst ├── dconv.033.ctst ├── dconv.034.ctst ├── dconv.035.ctst ├── dconv.036.ctst ├── dconv.037.ctst ├── dconv.038.ctst ├── dconv.039.ctst ├── dconv.040.ctst ├── dconv.041.ctst ├── dconv.042.ctst ├── dconv.043.ctst ├── dconv.044.ctst ├── dconv.045.ctst ├── dconv.046.ctst ├── dconv.047.ctst ├── dconv.048.ctst ├── dconv.049.ctst ├── dconv.050.ctst ├── dconv.051.ctst ├── dconv.052.ctst ├── dconv.053.ctst ├── dconv.054.ctst ├── dconv.055.ctst ├── dconv.056.ctst ├── dconv.057.ctst ├── dconv.058.ctst ├── dconv.059.ctst ├── dconv.060.ctst ├── dconv.061.ctst ├── dconv.062.ctst ├── dconv.063.ctst ├── dconv.064.ctst ├── dconv.065.ctst ├── dconv.066.ctst ├── dconv.067.ctst ├── dconv.068.ctst ├── dconv.069.ctst ├── dconv.070.ctst ├── dconv.071.ctst ├── dconv.072.ctst ├── dconv.073.ctst ├── dconv.074.ctst ├── dconv.075.ctst ├── dconv.076.ctst ├── dconv.077.ctst ├── dconv.078.ctst ├── dconv.079.ctst ├── dconv.080.ctst ├── dconv.081.ctst ├── dconv.082.ctst ├── dconv.083.ctst ├── dconv.084.ctst ├── dconv.085.ctst ├── dconv.086.ctst ├── dconv.087.ctst ├── dconv.088.ctst ├── dconv.089.ctst ├── dconv.090.ctst ├── dconv.091.ctst ├── dconv.092.ctst ├── dconv.093.ctst ├── dconv.094.ctst ├── dconv.095.ctst ├── dconv.096.ctst ├── dconv.097.ctst ├── dconv.098.ctst ├── dconv.099.ctst ├── dconv.100.ctst ├── dconv.101.ctst ├── dconv.102.ctst ├── dconv.103.ctst ├── dconv.104.ctst ├── dconv.105.ctst ├── dconv.106.ctst ├── dconv.107.ctst ├── dconv.108.ctst ├── dconv.109.ctst ├── dconv.110.ctst ├── dconv.111.ctst ├── dconv.112.ctst ├── dconv.113.ctst ├── dconv.114.ctst ├── dconv.115.ctst ├── dconv.116.ctst ├── dconv.117.ctst ├── dconv.118.ctst ├── dconv.119.ctst ├── dconv.120.ctst ├── dconv.121.ctst ├── dconv.122.ctst ├── dconv.123.ctst ├── dconv.124.ctst ├── dconv.125.ctst ├── dconv.126.ctst ├── dconv.127.ctst ├── dconv.128.ctst ├── dconv.129.ctst ├── dconv.130.ctst ├── dconv.131.ctst ├── dconv.132.ctst ├── dconv.133.ctst ├── dconv.134.ctst ├── dconv.135.ctst ├── dconv.136.ctst ├── dconv.137.ctst ├── dconv.138.ctst ├── dconv.139.ctst ├── dconv.140.ctst ├── dconv.141.ctst ├── dconv.142.ctst ├── dconv.143.ctst ├── dconv.144.ctst ├── ddiff.001.ctst ├── ddiff.002.ctst ├── ddiff.003.ctst ├── ddiff.004.ctst ├── ddiff.005.ctst ├── ddiff.006.ctst ├── ddiff.007.ctst ├── ddiff.008.ctst ├── ddiff.009.ctst ├── ddiff.010.ctst ├── ddiff.011.ctst ├── ddiff.012.ctst ├── ddiff.013.ctst ├── ddiff.014.ctst ├── ddiff.015.ctst ├── ddiff.016.ctst ├── ddiff.017.ctst ├── ddiff.018.ctst ├── ddiff.019.ctst ├── ddiff.020.ctst ├── ddiff.021.ctst ├── ddiff.022.ctst ├── ddiff.023.ctst ├── ddiff.024.ctst ├── ddiff.025.ctst ├── ddiff.026.ctst ├── ddiff.027.ctst ├── ddiff.028.ctst ├── ddiff.029.ctst ├── ddiff.030.ctst ├── ddiff.031.ctst ├── ddiff.032.ctst ├── ddiff.033.ctst ├── ddiff.034.ctst ├── ddiff.035.ctst ├── ddiff.036.ctst ├── ddiff.037.ctst ├── ddiff.038.ctst ├── ddiff.039.ctst ├── ddiff.040.ctst ├── ddiff.041.ctst ├── ddiff.042.ctst ├── ddiff.043.ctst ├── ddiff.044.ctst ├── ddiff.045.ctst ├── ddiff.046.ctst ├── ddiff.047.ctst ├── ddiff.048.ctst ├── ddiff.049.ctst ├── ddiff.050.ctst ├── ddiff.051.ctst ├── ddiff.052.ctst ├── ddiff.053.ctst ├── ddiff.054.ctst ├── ddiff.055.ctst ├── ddiff.056.ctst ├── ddiff.057.ctst ├── ddiff.058.ctst ├── ddiff.059.ctst ├── ddiff.060.ctst ├── ddiff.061.ctst ├── ddiff.062.ctst ├── ddiff.063.ctst ├── ddiff.064.ctst ├── ddiff.065.ctst ├── ddiff.066.ctst ├── ddiff.067.ctst ├── ddiff.068.ctst ├── ddiff.069.ctst ├── ddiff.070.ctst ├── ddiff.071.ctst ├── ddiff.072.ctst ├── dgrep.001.ctst ├── dgrep.002.ctst ├── dgrep.003.ctst ├── dgrep.004.ctst ├── dgrep.005.ctst ├── dgrep.006.ctst ├── dgrep.007.ctst ├── dgrep.008.ctst ├── dgrep.009.ctst ├── dgrep.010.ctst ├── dgrep.011.ctst ├── dgrep.012.ctst ├── dgrep.013.ctst ├── dgrep.014.ctst ├── dgrep.015.ctst ├── dgrep.016.ctst ├── dgrep.017.ctst ├── dgrep.018.ctst ├── dgrep.019.ctst ├── dgrep.020.ctst ├── dgrep.021.ctst ├── dgrep.022.ctst ├── dgrep.023.ctst ├── dgrep.024.ctst ├── dgrep.025.ctst ├── dgrep.026.ctst ├── dgrep.027.ctst ├── dgrep.028.ctst ├── dgrep.029.ctst ├── dgrep.030.ctst ├── dgrep.031.ctst ├── dgrep.032.ctst ├── dgrep.033.ctst ├── dgrep.034.ctst ├── dgrep.035.ctst ├── dgrep.036.ctst ├── dgrep.037.ctst ├── dgrep.038.ctst ├── dgrep.039.ctst ├── dgrep.040.ctst ├── dgrep.041.ctst ├── dgrep.042.ctst ├── dgrep.043.ctst ├── dround.001.ctst ├── dround.002.ctst ├── dround.003.ctst ├── dround.004.ctst ├── dround.005.ctst ├── dround.006.ctst ├── dround.007.ctst ├── dround.008.ctst ├── dround.009.ctst ├── dround.010.ctst ├── dround.011.ctst ├── dround.012.ctst ├── dround.013.ctst ├── dround.014.ctst ├── dround.015.ctst ├── dround.016.ctst ├── dround.017.ctst ├── dround.018.ctst ├── dround.019.ctst ├── dround.020.ctst ├── dround.021.ctst ├── dround.022.ctst ├── dround.023.ctst ├── dround.024.ctst ├── dround.025.ctst ├── dround.026.ctst ├── dround.027.ctst ├── dround.028.ctst ├── dround.029.ctst ├── dround.030.ctst ├── dround.031.ctst ├── dround.032.ctst ├── dround.033.ctst ├── dround.034.ctst ├── dround.035.ctst ├── dround.036.ctst ├── dround.037.ctst ├── dseq-cnt.1.sh ├── dseq-cnt.2.sh ├── dseq-cnt.3.sh ├── dseq.01.ctst ├── dseq.02.ctst ├── dseq.03.ctst ├── dseq.04.ctst ├── dseq.05.ctst ├── dseq.06.ctst ├── dseq.07.ctst ├── dseq.08.ctst ├── dseq.09.ctst ├── dseq.10.ctst ├── dseq.11.ctst ├── dseq.12.ctst ├── dseq.13.ctst ├── dseq.14.ctst ├── dseq.15.ctst ├── dseq.16.ctst ├── dseq.17.ctst ├── dseq.18.ctst ├── dseq.19.ctst ├── dseq.20.ctst ├── dseq.21.ctst ├── dseq.22.ctst ├── dseq.23.ctst ├── dseq.24.ctst ├── dseq.25.ctst ├── dseq.26.ctst ├── dseq.27.ctst ├── dseq.28.ctst ├── dseq.29.ctst ├── dseq.30.ctst ├── dseq.31.ctst ├── dseq.32.ctst ├── dseq.33.ctst ├── dseq.34.ctst ├── dseq.35.ctst ├── dseq.36.ctst ├── dseq.37.ctst ├── dseq.38.ctst ├── dseq.39.ctst ├── dseq.40.ctst ├── dseq.41.ctst ├── dseq.42.ctst ├── dseq.43.ctst ├── dseq.44.ctst ├── dseq.45.ctst ├── dseq.46.ctst ├── dseq.47.ctst ├── dseq.48.ctst ├── dseq.49.ctst ├── dseq.50.ctst ├── dseq.51.ctst ├── dseq.52.ctst ├── dseq.53.ctst ├── dseq.54.ctst ├── dseq.55.ctst ├── dseq.56.ctst ├── dseq.57.ctst ├── dseq.58.ctst ├── dseq.59.ctst ├── dseq.60.ctst ├── dseq.61.ctst ├── dseq.62.ctst ├── dseq.63.ctst ├── dseq.64.ctst ├── dseq.65.ctst ├── dseq.66.ctst ├── dseq.67.ctst ├── dsort.001.ctst ├── dsort.002.ctst ├── dsort.003.ctst ├── dsort.004.ctst ├── dsort.005.ctst ├── dsort.006.ctst ├── dsort.007.ctst ├── dtadd.001.ctst ├── dtadd.002.ctst ├── dtadd.003.ctst ├── dtadd.004.ctst ├── dtadd.005.ctst ├── dtadd.006.ctst ├── dtadd.007.ctst ├── dtadd.008.ctst ├── dtadd.009.ctst ├── dtadd.010.ctst ├── dtadd.011.ctst ├── dtadd.012.ctst ├── dtadd.013.ctst ├── dtadd.014.ctst ├── dtadd.015.ctst ├── dtadd.016.ctst ├── dtadd.017.ctst ├── dtadd.018.ctst ├── dtadd.019.ctst ├── dtadd.020.ctst ├── dtadd.021.ctst ├── dtadd.022.ctst ├── dtadd.023.ctst ├── dtadd.024.ctst ├── dtadd.025.ctst ├── dtadd.026.ctst ├── dtadd.027.ctst ├── dtadd.028.ctst ├── dtadd.029.ctst ├── dtadd.030.ctst ├── dtadd.031.ctst ├── dtadd.032.ctst ├── dtadd.033.ctst ├── dtadd.034.ctst ├── dtadd.035.ctst ├── dtadd.036.ctst ├── dtadd.037.ctst ├── dtadd.038.ctst ├── dtadd.039.ctst ├── dtadd.040.ctst ├── dtadd.041.ctst ├── dtadd.042.ctst ├── dtadd.043.ctst ├── dtadd.044.ctst ├── dtadd.045.ctst ├── dtadd.046.ctst ├── dtadd.047.ctst ├── dtadd.048.ctst ├── dtadd.049.ctst ├── dtadd.050.ctst ├── dtadd.051.ctst ├── dtadd.052.ctst ├── dtadd.053.ctst ├── dtadd.054.ctst ├── dtadd.055.ctst ├── dtconv.001.ctst ├── dtconv.002.ctst ├── dtconv.003.ctst ├── dtconv.004.ctst ├── dtconv.005.ctst ├── dtconv.006.ctst ├── dtconv.007.ctst ├── dtconv.008.ctst ├── dtconv.009.ctst ├── dtconv.010.ctst ├── dtconv.011.ctst ├── dtconv.012.ctst ├── dtconv.013.ctst ├── dtconv.014.ctst ├── dtconv.015.ctst ├── dtconv.016.ctst ├── dtconv.017.ctst ├── dtconv.018.ctst ├── dtconv.019.ctst ├── dtconv.020.ctst ├── dtconv.021.ctst ├── dtconv.022.ctst ├── dtconv.023.ctst ├── dtconv.024.ctst ├── dtconv.025.ctst ├── dtconv.026.ctst ├── dtconv.027.ctst ├── dtconv.028.ctst ├── dtconv.029.ctst ├── dtconv.030.ctst ├── dtconv.031.ctst ├── dtconv.032.ctst ├── dtconv.033.ctst ├── dtconv.034.ctst ├── dtconv.035.ctst ├── dtconv.036.ctst ├── dtconv.037.ctst ├── dtconv.038.ctst ├── dtconv.039.ctst ├── dtconv.040.ctst ├── dtconv.041.ctst ├── dtconv.042.ctst ├── dtconv.043.ctst ├── dtconv.044.ctst ├── dtconv.045.ctst ├── dtconv.046.ctst ├── dtconv.047.ctst ├── dtconv.048.ctst ├── dtconv.049.ctst ├── dtconv.050.ctst ├── dtconv.051.ctst ├── dtconv.052.ctst ├── dtconv.053.ctst ├── dtconv.054.ctst ├── dtconv.055.ctst ├── dtconv.056.ctst ├── dtconv.057.ctst ├── dtconv.058.ctst ├── dtconv.059.ctst ├── dtconv.060.ctst ├── dtconv.061.ctst ├── dtconv.062.ctst ├── dtconv.063.ctst ├── dtconv.064.ctst ├── dtconv.065.ctst ├── dtconv.066.ctst ├── dtconv.067.ctst ├── dtconv.068.ctst ├── dtconv.069.ctst ├── dtconv.070.ctst ├── dtconv.071.ctst ├── dtconv.072.ctst ├── dtcore-add.c ├── dtcore-conv.c ├── dtcore-strp.c ├── dtdiff.001.ctst ├── dtdiff.002.ctst ├── dtdiff.003.ctst ├── dtdiff.004.ctst ├── dtdiff.005.ctst ├── dtdiff.006.ctst ├── dtdiff.007.ctst ├── dtdiff.008.ctst ├── dtdiff.009.ctst ├── dtdiff.010.ctst ├── dtdiff.011.ctst ├── dtdiff.012.ctst ├── dtdiff.013.ctst ├── dtdiff.014.ctst ├── dtdiff.015.ctst ├── dtdiff.016.ctst ├── dtdiff.017.ctst ├── dtdiff.018.ctst ├── dtdiff.019.ctst ├── dtdiff.020.ctst ├── dtdiff.021.ctst ├── dtdiff.022.ctst ├── dtdiff.023.ctst ├── dtdiff.024.ctst ├── dtdiff.025.ctst ├── dtdiff.026.ctst ├── dtdiff.027.ctst ├── dtdiff.028.ctst ├── dtdiff.029.ctst ├── dtdiff.030.ctst ├── dtdiff.031.ctst ├── dtdiff.032.ctst ├── dtdiff.033.ctst ├── dtdiff.034.ctst ├── dtdiff.035.ctst ├── dtdiff.036.ctst ├── dtdiff.037.ctst ├── dtdiff.038.ctst ├── dtdiff.039.ctst ├── dtdiff.040.ctst ├── dtdiff.041.ctst ├── dtdiff.042.ctst ├── dtdiff.043.ctst ├── dtdiff.044.ctst ├── dtdiff.045.ctst ├── dtdiff.046.ctst ├── dtdiff.047.ctst ├── dtdiff.048.ctst ├── dtdiff.049.ctst ├── dtdiff.050.ctst ├── dtdiff.051.ctst ├── dtdiff.052.ctst ├── dtdiff.053.ctst ├── dtdiff.054.ctst ├── dtdiff.055.ctst ├── dtest.001.ctst ├── dtest.002.ctst ├── dtest.003.ctst ├── dtest.004.ctst ├── dtest.005.ctst ├── dtest.006.ctst ├── dtest.007.ctst ├── dtest.008.ctst ├── dtest.009.ctst ├── dtest.010.ctst ├── dtest.011.ctst ├── dtest.012.ctst ├── dtgrep.001.ctst ├── dtgrep.002.ctst ├── dtgrep.003.ctst ├── dtgrep.004.ctst ├── dtgrep.005.ctst ├── dtgrep.006.ctst ├── dtgrep.007.ctst ├── dtgrep.008.ctst ├── dtgrep.009.ctst ├── dtgrep.010.ctst ├── dtgrep.011.ctst ├── dtgrep.012.ctst ├── dtgrep.013.ctst ├── dtgrep.014.ctst ├── dtround.001.ctst ├── dtround.002.ctst ├── dtround.003.ctst ├── dtround.004.ctst ├── dtround.005.ctst ├── dtround.006.ctst ├── dtround.007.ctst ├── dtround.008.ctst ├── dtround.009.ctst ├── dtround.010.ctst ├── dtround.011.ctst ├── dtround.012.ctst ├── dtround.013.ctst ├── dtround.014.ctst ├── dtround.015.ctst ├── dtround.016.ctst ├── dtround.017.ctst ├── dtround.018.ctst ├── dtround.019.ctst ├── dtround.020.ctst ├── dtround.021.ctst ├── dtround.022.ctst ├── dtseq.01.ctst ├── dtseq.02.ctst ├── dtseq.03.ctst ├── dtseq.04.ctst ├── dtseq.05.ctst ├── dtseq.06.ctst ├── dtseq.07.ctst ├── dtseq.08.ctst ├── dtseq.09.ctst ├── dtseq.10.ctst ├── dtseq.11.ctst ├── dtseq.12.ctst ├── dttest.001.ctst ├── dttest.002.ctst ├── dttest.003.ctst ├── dttest.004.ctst ├── dttest.005.ctst ├── dttest.006.ctst ├── dttest.007.ctst ├── dttest.008.ctst ├── dttest.009.ctst ├── dttest.010.ctst ├── dtz.001.ctst ├── dtz.002.ctst ├── dummy.tzmap ├── dzone.001.ctst ├── dzone.002.ctst ├── dzone.003.ctst ├── dzone.004.ctst ├── dzone.005.ctst ├── dzone.006.ctst ├── dzone.007.ctst ├── dzone.008.ctst ├── dzone.009.ctst ├── dzone.010.ctst ├── dzone.011.ctst ├── dzone.012.ctst ├── dzone.013.ctst ├── dzone.014.ctst ├── enum-1.c ├── itostr-1.c ├── itostr-2.c ├── itostr-3.c ├── itostr-4.c ├── itostr.001.ctst ├── itostr.002.ctst ├── itostr.003.ctst ├── itostr.004.ctst ├── mil-midnight.001.ctst ├── mil-midnight.002.ctst ├── mil-midnight.003.ctst ├── mil-midnight.004.ctst ├── mil-midnight.005.ctst ├── mil-midnight.006.ctst ├── mil-midnight.007.ctst ├── mil-midnight.008.ctst ├── mil-midnight.009.ctst ├── mil-midnight.010.ctst ├── prchunk.001.ctst ├── prchunk.002.ctst ├── prchunk.003.ctst ├── prchunk.004.ctst ├── prchunk.005.ctst ├── prchunk.006.ctst ├── some-dates-and-other-stuff.csv ├── strptime.001.ctst ├── strptime.002.ctst ├── strptime.003.ctst ├── strtoi-1.c ├── strtoi-bench.c ├── strtoi.001.ctst ├── struct-1.c ├── struct-2.c ├── struct-3.c ├── struct-4.c ├── struct-5.c ├── struct-6.c ├── struct-7.c ├── struct-8.c ├── struct-9.c ├── tadd.001.ctst ├── tadd.002.ctst ├── tadd.003.ctst ├── tadd.004.ctst ├── tadd.005.ctst ├── tadd.006.ctst ├── tadd.007.ctst ├── tadd.008.ctst ├── tadd.009.ctst ├── tadd.010.ctst ├── tadd.011.ctst ├── tconv.001.ctst ├── tconv.002.ctst ├── tconv.003.ctst ├── tconv.004.ctst ├── tconv.005.ctst ├── tconv.006.ctst ├── tconv.007.ctst ├── tconv.008.ctst ├── tconv.009.ctst ├── tconv.010.ctst ├── tconv.011.ctst ├── tconv.012.ctst ├── tconv.013.ctst ├── tconv.014.ctst ├── tdiff.001.ctst ├── tdiff.002.ctst ├── tdiff.003.ctst ├── tdiff.004.ctst ├── tdiff.005.ctst ├── tdiff.006.ctst ├── tdiff.007.ctst ├── tdiff.008.ctst ├── tdiff.009.ctst ├── tdiff.010.ctst ├── tdiff.011.ctst ├── tdiff.012.ctst ├── tdiff.013.ctst ├── tdiff.014.ctst ├── tgrep.001.ctst ├── tgrep.002.ctst ├── tgrep.003.ctst ├── time-core-add.c ├── tround.001.ctst ├── tround.002.ctst ├── tround.003.ctst ├── tround.004.ctst ├── tround.005.ctst ├── tround.006.ctst ├── tseq.01.ctst ├── tseq.02.ctst ├── tseq.03.ctst ├── tseq.04.ctst ├── tseq.05.ctst ├── tseq.06.ctst ├── tseq.07.ctst ├── tseq.08.ctst ├── tseq.09.ctst ├── tseq.10.ctst ├── tseq.11.ctst ├── tseq.12.ctst ├── tseq.13.ctst ├── tseq.14.ctst ├── tseq.15.ctst ├── tseq.16.ctst ├── tseq.17.ctst ├── tseq.18.ctst ├── tseq.19.ctst ├── ttest.001.ctst ├── ttest.002.ctst ├── ttest.003.ctst ├── ttest.004.ctst ├── ttest.005.ctst ├── ttest.006.ctst ├── ttest.007.ctst ├── tzmap.001.ctst ├── tzmap.002.ctst ├── tzmap.003.ctst ├── tzmap.004.ctst ├── tzmap_check_01.ctst └── tzmap_check_02.ctst └── version.mk.in /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/.travis.yml -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/GNUmakefile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/tzconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/contrib/tzconv.c -------------------------------------------------------------------------------- /contrib/tzconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/contrib/tzconv.m -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/data/locale -------------------------------------------------------------------------------- /data/ummulqura.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/data/ummulqura.tab -------------------------------------------------------------------------------- /info/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/Makefile.am -------------------------------------------------------------------------------- /info/author.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/author.h2m -------------------------------------------------------------------------------- /info/dadd.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | dadd - Add durations to dates or times 3 | -------------------------------------------------------------------------------- /info/dateutils.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/dateutils.man -------------------------------------------------------------------------------- /info/dateutils.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/dateutils.texi -------------------------------------------------------------------------------- /info/dconv.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | dconv - Convert dates between calendars or time zones 3 | -------------------------------------------------------------------------------- /info/ddiff.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | ddiff - Compute durations between dates and times 3 | -------------------------------------------------------------------------------- /info/dgrep.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | dgrep - Find date or time matches in input stream 3 | -------------------------------------------------------------------------------- /info/dround.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/dround.name -------------------------------------------------------------------------------- /info/dseq.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | ddiff - Compute durations between dates and times 3 | -------------------------------------------------------------------------------- /info/dtest.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | dtest - Compare dates or times 3 | -------------------------------------------------------------------------------- /info/dzone.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/dzone.name -------------------------------------------------------------------------------- /info/format.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/format.texi -------------------------------------------------------------------------------- /info/genh2m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/genh2m.sh -------------------------------------------------------------------------------- /info/gentexi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/gentexi.sh -------------------------------------------------------------------------------- /info/locale.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/locale.texi -------------------------------------------------------------------------------- /info/strptime.name: -------------------------------------------------------------------------------- 1 | [NAME] 2 | strptime - Command line version of the C function 3 | -------------------------------------------------------------------------------- /info/texi2h2m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/texi2h2m.sh -------------------------------------------------------------------------------- /info/units.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/units.texi -------------------------------------------------------------------------------- /info/zone.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/info/zone.texi -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/bizda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/bizda.c -------------------------------------------------------------------------------- /lib/boops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/boops.h -------------------------------------------------------------------------------- /lib/daisy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/daisy.c -------------------------------------------------------------------------------- /lib/date-core-strpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/date-core-strpf.c -------------------------------------------------------------------------------- /lib/date-core-strpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/date-core-strpf.h -------------------------------------------------------------------------------- /lib/date-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/date-core.c -------------------------------------------------------------------------------- /lib/date-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/date-core.h -------------------------------------------------------------------------------- /lib/dt-core-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core-private.h -------------------------------------------------------------------------------- /lib/dt-core-strpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core-strpf.c -------------------------------------------------------------------------------- /lib/dt-core-strpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core-strpf.h -------------------------------------------------------------------------------- /lib/dt-core-tz-glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core-tz-glue.c -------------------------------------------------------------------------------- /lib/dt-core-tz-glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core-tz-glue.h -------------------------------------------------------------------------------- /lib/dt-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core.c -------------------------------------------------------------------------------- /lib/dt-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-core.h -------------------------------------------------------------------------------- /lib/dt-locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-locale.c -------------------------------------------------------------------------------- /lib/dt-locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/dt-locale.h -------------------------------------------------------------------------------- /lib/fmt-special.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/fmt-special.gperf -------------------------------------------------------------------------------- /lib/generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/generics.h -------------------------------------------------------------------------------- /lib/gmtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/gmtime.h -------------------------------------------------------------------------------- /lib/iata.tzminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/iata.tzminfo -------------------------------------------------------------------------------- /lib/icao.tzminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/icao.tzminfo -------------------------------------------------------------------------------- /lib/leap-seconds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/leap-seconds.def -------------------------------------------------------------------------------- /lib/leap-seconds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/leap-seconds.h -------------------------------------------------------------------------------- /lib/leap-seconds.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/leap-seconds.list -------------------------------------------------------------------------------- /lib/leaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/leaps.c -------------------------------------------------------------------------------- /lib/leaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/leaps.h -------------------------------------------------------------------------------- /lib/ltrcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ltrcc.c -------------------------------------------------------------------------------- /lib/ltrcc.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ltrcc.yuck -------------------------------------------------------------------------------- /lib/mic.tzminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/mic.tzminfo -------------------------------------------------------------------------------- /lib/nifty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/nifty.h -------------------------------------------------------------------------------- /lib/strops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/strops.c -------------------------------------------------------------------------------- /lib/strops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/strops.h -------------------------------------------------------------------------------- /lib/testlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/testlib.c -------------------------------------------------------------------------------- /lib/time-core-strpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/time-core-strpf.c -------------------------------------------------------------------------------- /lib/time-core-strpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/time-core-strpf.h -------------------------------------------------------------------------------- /lib/time-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/time-core.c -------------------------------------------------------------------------------- /lib/time-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/time-core.h -------------------------------------------------------------------------------- /lib/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/token.c -------------------------------------------------------------------------------- /lib/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/token.h -------------------------------------------------------------------------------- /lib/tzmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/tzmap.c -------------------------------------------------------------------------------- /lib/tzmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/tzmap.h -------------------------------------------------------------------------------- /lib/tzmap.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/tzmap.yuck -------------------------------------------------------------------------------- /lib/tzraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/tzraw.c -------------------------------------------------------------------------------- /lib/tzraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/tzraw.h -------------------------------------------------------------------------------- /lib/ummulqura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ummulqura.c -------------------------------------------------------------------------------- /lib/version.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/version.c.in -------------------------------------------------------------------------------- /lib/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/version.h -------------------------------------------------------------------------------- /lib/yd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/yd.c -------------------------------------------------------------------------------- /lib/ymcw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ymcw.c -------------------------------------------------------------------------------- /lib/ymd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ymd.c -------------------------------------------------------------------------------- /lib/ywd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/lib/ywd.c -------------------------------------------------------------------------------- /m4/ax_zoneinfo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/ax_zoneinfo.m4 -------------------------------------------------------------------------------- /m4/clitosis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/clitosis.m4 -------------------------------------------------------------------------------- /m4/sxe-compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/sxe-compiler.m4 -------------------------------------------------------------------------------- /m4/sxe-libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/sxe-libtool.m4 -------------------------------------------------------------------------------- /m4/sxe-linker.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/sxe-linker.m4 -------------------------------------------------------------------------------- /m4/sxe-matlab.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/sxe-matlab.m4 -------------------------------------------------------------------------------- /m4/sxe-mmap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/sxe-mmap.m4 -------------------------------------------------------------------------------- /m4/yuck.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/m4/yuck.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/alist.c -------------------------------------------------------------------------------- /src/alist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/alist.h -------------------------------------------------------------------------------- /src/dadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dadd.c -------------------------------------------------------------------------------- /src/dadd.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dadd.yuck -------------------------------------------------------------------------------- /src/dconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dconv.c -------------------------------------------------------------------------------- /src/dconv.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dconv.yuck -------------------------------------------------------------------------------- /src/ddiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/ddiff.c -------------------------------------------------------------------------------- /src/ddiff.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/ddiff.yuck -------------------------------------------------------------------------------- /src/dexpr-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dexpr-parser.y -------------------------------------------------------------------------------- /src/dexpr-scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dexpr-scanner.l -------------------------------------------------------------------------------- /src/dexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dexpr.c -------------------------------------------------------------------------------- /src/dexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dexpr.h -------------------------------------------------------------------------------- /src/dgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dgrep.c -------------------------------------------------------------------------------- /src/dgrep.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dgrep.yuck -------------------------------------------------------------------------------- /src/dround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dround.c -------------------------------------------------------------------------------- /src/dround.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dround.yuck -------------------------------------------------------------------------------- /src/dseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dseq.c -------------------------------------------------------------------------------- /src/dseq.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dseq.yuck -------------------------------------------------------------------------------- /src/dsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dsort.c -------------------------------------------------------------------------------- /src/dsort.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dsort.yuck -------------------------------------------------------------------------------- /src/dt-io-zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dt-io-zone.c -------------------------------------------------------------------------------- /src/dt-io-zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dt-io-zone.h -------------------------------------------------------------------------------- /src/dt-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dt-io.c -------------------------------------------------------------------------------- /src/dt-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dt-io.h -------------------------------------------------------------------------------- /src/dtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dtest.c -------------------------------------------------------------------------------- /src/dtest.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dtest.yuck -------------------------------------------------------------------------------- /src/dzone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dzone.c -------------------------------------------------------------------------------- /src/dzone.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/dzone.yuck -------------------------------------------------------------------------------- /src/prchunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/prchunk.c -------------------------------------------------------------------------------- /src/prchunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/prchunk.h -------------------------------------------------------------------------------- /src/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/strptime.c -------------------------------------------------------------------------------- /src/strptime.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/src/strptime.yuck -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/add.yd-1d.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.yd-1d.ctst -------------------------------------------------------------------------------- /test/add.yd-1w.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.yd-1w.ctst -------------------------------------------------------------------------------- /test/add.yd-1y.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.yd-1y.ctst -------------------------------------------------------------------------------- /test/add.ymcw-1d.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymcw-1d.ctst -------------------------------------------------------------------------------- /test/add.ymcw-1w.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymcw-1w.ctst -------------------------------------------------------------------------------- /test/add.ymcw-1y.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymcw-1y.ctst -------------------------------------------------------------------------------- /test/add.ymd-1d.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymd-1d.ctst -------------------------------------------------------------------------------- /test/add.ymd-1w.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymd-1w.ctst -------------------------------------------------------------------------------- /test/add.ymd-1y.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ymd-1y.ctst -------------------------------------------------------------------------------- /test/add.ywd-1d.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ywd-1d.ctst -------------------------------------------------------------------------------- /test/add.ywd-1w.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ywd-1w.ctst -------------------------------------------------------------------------------- /test/add.ywd-1y.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/add.ywd-1y.ctst -------------------------------------------------------------------------------- /test/caev_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/caev_01.txt -------------------------------------------------------------------------------- /test/caev_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/caev_02.txt -------------------------------------------------------------------------------- /test/clitosis.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/clitosis.am -------------------------------------------------------------------------------- /test/clitosis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/clitosis.c -------------------------------------------------------------------------------- /test/clitosis.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/clitosis.yuck -------------------------------------------------------------------------------- /test/dadd.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.001.ctst -------------------------------------------------------------------------------- /test/dadd.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.002.ctst -------------------------------------------------------------------------------- /test/dadd.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.003.ctst -------------------------------------------------------------------------------- /test/dadd.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.004.ctst -------------------------------------------------------------------------------- /test/dadd.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.005.ctst -------------------------------------------------------------------------------- /test/dadd.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.006.ctst -------------------------------------------------------------------------------- /test/dadd.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.007.ctst -------------------------------------------------------------------------------- /test/dadd.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.008.ctst -------------------------------------------------------------------------------- /test/dadd.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.009.ctst -------------------------------------------------------------------------------- /test/dadd.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.010.ctst -------------------------------------------------------------------------------- /test/dadd.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.011.ctst -------------------------------------------------------------------------------- /test/dadd.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.012.ctst -------------------------------------------------------------------------------- /test/dadd.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.013.ctst -------------------------------------------------------------------------------- /test/dadd.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.014.ctst -------------------------------------------------------------------------------- /test/dadd.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.015.ctst -------------------------------------------------------------------------------- /test/dadd.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.016.ctst -------------------------------------------------------------------------------- /test/dadd.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.017.ctst -------------------------------------------------------------------------------- /test/dadd.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.018.ctst -------------------------------------------------------------------------------- /test/dadd.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.019.ctst -------------------------------------------------------------------------------- /test/dadd.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.020.ctst -------------------------------------------------------------------------------- /test/dadd.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.021.ctst -------------------------------------------------------------------------------- /test/dadd.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.022.ctst -------------------------------------------------------------------------------- /test/dadd.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.023.ctst -------------------------------------------------------------------------------- /test/dadd.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.024.ctst -------------------------------------------------------------------------------- /test/dadd.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.025.ctst -------------------------------------------------------------------------------- /test/dadd.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.026.ctst -------------------------------------------------------------------------------- /test/dadd.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.027.ctst -------------------------------------------------------------------------------- /test/dadd.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.028.ctst -------------------------------------------------------------------------------- /test/dadd.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.029.ctst -------------------------------------------------------------------------------- /test/dadd.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.030.ctst -------------------------------------------------------------------------------- /test/dadd.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.031.ctst -------------------------------------------------------------------------------- /test/dadd.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.032.ctst -------------------------------------------------------------------------------- /test/dadd.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.033.ctst -------------------------------------------------------------------------------- /test/dadd.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.034.ctst -------------------------------------------------------------------------------- /test/dadd.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.035.ctst -------------------------------------------------------------------------------- /test/dadd.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.036.ctst -------------------------------------------------------------------------------- /test/dadd.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.037.ctst -------------------------------------------------------------------------------- /test/dadd.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.038.ctst -------------------------------------------------------------------------------- /test/dadd.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.039.ctst -------------------------------------------------------------------------------- /test/dadd.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.040.ctst -------------------------------------------------------------------------------- /test/dadd.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.041.ctst -------------------------------------------------------------------------------- /test/dadd.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.042.ctst -------------------------------------------------------------------------------- /test/dadd.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.043.ctst -------------------------------------------------------------------------------- /test/dadd.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.044.ctst -------------------------------------------------------------------------------- /test/dadd.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.045.ctst -------------------------------------------------------------------------------- /test/dadd.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.046.ctst -------------------------------------------------------------------------------- /test/dadd.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.047.ctst -------------------------------------------------------------------------------- /test/dadd.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.048.ctst -------------------------------------------------------------------------------- /test/dadd.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.049.ctst -------------------------------------------------------------------------------- /test/dadd.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.050.ctst -------------------------------------------------------------------------------- /test/dadd.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.051.ctst -------------------------------------------------------------------------------- /test/dadd.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.052.ctst -------------------------------------------------------------------------------- /test/dadd.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.053.ctst -------------------------------------------------------------------------------- /test/dadd.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.054.ctst -------------------------------------------------------------------------------- /test/dadd.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.055.ctst -------------------------------------------------------------------------------- /test/dadd.056.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.056.ctst -------------------------------------------------------------------------------- /test/dadd.057.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.057.ctst -------------------------------------------------------------------------------- /test/dadd.058.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.058.ctst -------------------------------------------------------------------------------- /test/dadd.059.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.059.ctst -------------------------------------------------------------------------------- /test/dadd.060.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.060.ctst -------------------------------------------------------------------------------- /test/dadd.061.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.061.ctst -------------------------------------------------------------------------------- /test/dadd.062.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.062.ctst -------------------------------------------------------------------------------- /test/dadd.063.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.063.ctst -------------------------------------------------------------------------------- /test/dadd.064.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.064.ctst -------------------------------------------------------------------------------- /test/dadd.065.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.065.ctst -------------------------------------------------------------------------------- /test/dadd.066.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.066.ctst -------------------------------------------------------------------------------- /test/dadd.067.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.067.ctst -------------------------------------------------------------------------------- /test/dadd.068.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.068.ctst -------------------------------------------------------------------------------- /test/dadd.069.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.069.ctst -------------------------------------------------------------------------------- /test/dadd.070.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.070.ctst -------------------------------------------------------------------------------- /test/dadd.071.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.071.ctst -------------------------------------------------------------------------------- /test/dadd.072.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.072.ctst -------------------------------------------------------------------------------- /test/dadd.073.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.073.ctst -------------------------------------------------------------------------------- /test/dadd.074.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.074.ctst -------------------------------------------------------------------------------- /test/dadd.075.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.075.ctst -------------------------------------------------------------------------------- /test/dadd.076.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.076.ctst -------------------------------------------------------------------------------- /test/dadd.077.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.077.ctst -------------------------------------------------------------------------------- /test/dadd.078.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.078.ctst -------------------------------------------------------------------------------- /test/dadd.079.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.079.ctst -------------------------------------------------------------------------------- /test/dadd.080.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.080.ctst -------------------------------------------------------------------------------- /test/dadd.081.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.081.ctst -------------------------------------------------------------------------------- /test/dadd.082.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.082.ctst -------------------------------------------------------------------------------- /test/dadd.083.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.083.ctst -------------------------------------------------------------------------------- /test/dadd.084.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.084.ctst -------------------------------------------------------------------------------- /test/dadd.085.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.085.ctst -------------------------------------------------------------------------------- /test/dadd.086.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.086.ctst -------------------------------------------------------------------------------- /test/dadd.087.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.087.ctst -------------------------------------------------------------------------------- /test/dadd.088.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.088.ctst -------------------------------------------------------------------------------- /test/dadd.089.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.089.ctst -------------------------------------------------------------------------------- /test/dadd.090.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.090.ctst -------------------------------------------------------------------------------- /test/dadd.090.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.090.dat -------------------------------------------------------------------------------- /test/dadd.091.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.091.ctst -------------------------------------------------------------------------------- /test/dadd.092.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.092.ctst -------------------------------------------------------------------------------- /test/dadd.093.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.093.ctst -------------------------------------------------------------------------------- /test/dadd.094.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.094.ctst -------------------------------------------------------------------------------- /test/dadd.095.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.095.ctst -------------------------------------------------------------------------------- /test/dadd.096.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.096.ctst -------------------------------------------------------------------------------- /test/dadd.097.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.097.ctst -------------------------------------------------------------------------------- /test/dadd.098.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.098.ctst -------------------------------------------------------------------------------- /test/dadd.099.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.099.ctst -------------------------------------------------------------------------------- /test/dadd.100.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.100.ctst -------------------------------------------------------------------------------- /test/dadd.101.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.101.ctst -------------------------------------------------------------------------------- /test/dadd.102.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.102.ctst -------------------------------------------------------------------------------- /test/dadd.103.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dadd.103.ctst -------------------------------------------------------------------------------- /test/dconv-batch.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv-batch.1.sh -------------------------------------------------------------------------------- /test/dconv-batch.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv-batch.2.sh -------------------------------------------------------------------------------- /test/dconv.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.001.ctst -------------------------------------------------------------------------------- /test/dconv.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.002.ctst -------------------------------------------------------------------------------- /test/dconv.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.003.ctst -------------------------------------------------------------------------------- /test/dconv.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.004.ctst -------------------------------------------------------------------------------- /test/dconv.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.005.ctst -------------------------------------------------------------------------------- /test/dconv.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.006.ctst -------------------------------------------------------------------------------- /test/dconv.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.007.ctst -------------------------------------------------------------------------------- /test/dconv.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.008.ctst -------------------------------------------------------------------------------- /test/dconv.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.009.ctst -------------------------------------------------------------------------------- /test/dconv.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.010.ctst -------------------------------------------------------------------------------- /test/dconv.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.011.ctst -------------------------------------------------------------------------------- /test/dconv.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.012.ctst -------------------------------------------------------------------------------- /test/dconv.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.013.ctst -------------------------------------------------------------------------------- /test/dconv.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.014.ctst -------------------------------------------------------------------------------- /test/dconv.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.015.ctst -------------------------------------------------------------------------------- /test/dconv.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.016.ctst -------------------------------------------------------------------------------- /test/dconv.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.017.ctst -------------------------------------------------------------------------------- /test/dconv.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.018.ctst -------------------------------------------------------------------------------- /test/dconv.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.019.ctst -------------------------------------------------------------------------------- /test/dconv.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.020.ctst -------------------------------------------------------------------------------- /test/dconv.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.021.ctst -------------------------------------------------------------------------------- /test/dconv.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.022.ctst -------------------------------------------------------------------------------- /test/dconv.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.023.ctst -------------------------------------------------------------------------------- /test/dconv.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.024.ctst -------------------------------------------------------------------------------- /test/dconv.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.025.ctst -------------------------------------------------------------------------------- /test/dconv.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.026.ctst -------------------------------------------------------------------------------- /test/dconv.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.027.ctst -------------------------------------------------------------------------------- /test/dconv.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.028.ctst -------------------------------------------------------------------------------- /test/dconv.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.029.ctst -------------------------------------------------------------------------------- /test/dconv.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.030.ctst -------------------------------------------------------------------------------- /test/dconv.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.031.ctst -------------------------------------------------------------------------------- /test/dconv.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.032.ctst -------------------------------------------------------------------------------- /test/dconv.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.033.ctst -------------------------------------------------------------------------------- /test/dconv.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.034.ctst -------------------------------------------------------------------------------- /test/dconv.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.035.ctst -------------------------------------------------------------------------------- /test/dconv.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.036.ctst -------------------------------------------------------------------------------- /test/dconv.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.037.ctst -------------------------------------------------------------------------------- /test/dconv.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.038.ctst -------------------------------------------------------------------------------- /test/dconv.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.039.ctst -------------------------------------------------------------------------------- /test/dconv.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.040.ctst -------------------------------------------------------------------------------- /test/dconv.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.041.ctst -------------------------------------------------------------------------------- /test/dconv.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.042.ctst -------------------------------------------------------------------------------- /test/dconv.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.043.ctst -------------------------------------------------------------------------------- /test/dconv.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.044.ctst -------------------------------------------------------------------------------- /test/dconv.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.045.ctst -------------------------------------------------------------------------------- /test/dconv.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.046.ctst -------------------------------------------------------------------------------- /test/dconv.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.047.ctst -------------------------------------------------------------------------------- /test/dconv.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.048.ctst -------------------------------------------------------------------------------- /test/dconv.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.049.ctst -------------------------------------------------------------------------------- /test/dconv.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.050.ctst -------------------------------------------------------------------------------- /test/dconv.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.051.ctst -------------------------------------------------------------------------------- /test/dconv.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.052.ctst -------------------------------------------------------------------------------- /test/dconv.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.053.ctst -------------------------------------------------------------------------------- /test/dconv.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.054.ctst -------------------------------------------------------------------------------- /test/dconv.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.055.ctst -------------------------------------------------------------------------------- /test/dconv.056.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.056.ctst -------------------------------------------------------------------------------- /test/dconv.057.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.057.ctst -------------------------------------------------------------------------------- /test/dconv.058.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.058.ctst -------------------------------------------------------------------------------- /test/dconv.059.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.059.ctst -------------------------------------------------------------------------------- /test/dconv.060.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.060.ctst -------------------------------------------------------------------------------- /test/dconv.061.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.061.ctst -------------------------------------------------------------------------------- /test/dconv.062.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.062.ctst -------------------------------------------------------------------------------- /test/dconv.063.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.063.ctst -------------------------------------------------------------------------------- /test/dconv.064.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.064.ctst -------------------------------------------------------------------------------- /test/dconv.065.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.065.ctst -------------------------------------------------------------------------------- /test/dconv.066.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.066.ctst -------------------------------------------------------------------------------- /test/dconv.067.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.067.ctst -------------------------------------------------------------------------------- /test/dconv.068.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.068.ctst -------------------------------------------------------------------------------- /test/dconv.069.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.069.ctst -------------------------------------------------------------------------------- /test/dconv.070.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.070.ctst -------------------------------------------------------------------------------- /test/dconv.071.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.071.ctst -------------------------------------------------------------------------------- /test/dconv.072.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.072.ctst -------------------------------------------------------------------------------- /test/dconv.073.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.073.ctst -------------------------------------------------------------------------------- /test/dconv.074.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.074.ctst -------------------------------------------------------------------------------- /test/dconv.075.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.075.ctst -------------------------------------------------------------------------------- /test/dconv.076.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.076.ctst -------------------------------------------------------------------------------- /test/dconv.077.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.077.ctst -------------------------------------------------------------------------------- /test/dconv.078.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.078.ctst -------------------------------------------------------------------------------- /test/dconv.079.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.079.ctst -------------------------------------------------------------------------------- /test/dconv.080.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.080.ctst -------------------------------------------------------------------------------- /test/dconv.081.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.081.ctst -------------------------------------------------------------------------------- /test/dconv.082.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.082.ctst -------------------------------------------------------------------------------- /test/dconv.083.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.083.ctst -------------------------------------------------------------------------------- /test/dconv.084.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.084.ctst -------------------------------------------------------------------------------- /test/dconv.085.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.085.ctst -------------------------------------------------------------------------------- /test/dconv.086.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.086.ctst -------------------------------------------------------------------------------- /test/dconv.087.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.087.ctst -------------------------------------------------------------------------------- /test/dconv.088.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.088.ctst -------------------------------------------------------------------------------- /test/dconv.089.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.089.ctst -------------------------------------------------------------------------------- /test/dconv.090.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.090.ctst -------------------------------------------------------------------------------- /test/dconv.091.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.091.ctst -------------------------------------------------------------------------------- /test/dconv.092.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.092.ctst -------------------------------------------------------------------------------- /test/dconv.093.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.093.ctst -------------------------------------------------------------------------------- /test/dconv.094.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.094.ctst -------------------------------------------------------------------------------- /test/dconv.095.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.095.ctst -------------------------------------------------------------------------------- /test/dconv.096.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.096.ctst -------------------------------------------------------------------------------- /test/dconv.097.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.097.ctst -------------------------------------------------------------------------------- /test/dconv.098.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.098.ctst -------------------------------------------------------------------------------- /test/dconv.099.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.099.ctst -------------------------------------------------------------------------------- /test/dconv.100.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.100.ctst -------------------------------------------------------------------------------- /test/dconv.101.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.101.ctst -------------------------------------------------------------------------------- /test/dconv.102.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.102.ctst -------------------------------------------------------------------------------- /test/dconv.103.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.103.ctst -------------------------------------------------------------------------------- /test/dconv.104.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.104.ctst -------------------------------------------------------------------------------- /test/dconv.105.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.105.ctst -------------------------------------------------------------------------------- /test/dconv.106.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.106.ctst -------------------------------------------------------------------------------- /test/dconv.107.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.107.ctst -------------------------------------------------------------------------------- /test/dconv.108.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.108.ctst -------------------------------------------------------------------------------- /test/dconv.109.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.109.ctst -------------------------------------------------------------------------------- /test/dconv.110.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.110.ctst -------------------------------------------------------------------------------- /test/dconv.111.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.111.ctst -------------------------------------------------------------------------------- /test/dconv.112.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.112.ctst -------------------------------------------------------------------------------- /test/dconv.113.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.113.ctst -------------------------------------------------------------------------------- /test/dconv.114.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.114.ctst -------------------------------------------------------------------------------- /test/dconv.115.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.115.ctst -------------------------------------------------------------------------------- /test/dconv.116.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.116.ctst -------------------------------------------------------------------------------- /test/dconv.117.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.117.ctst -------------------------------------------------------------------------------- /test/dconv.118.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.118.ctst -------------------------------------------------------------------------------- /test/dconv.119.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.119.ctst -------------------------------------------------------------------------------- /test/dconv.120.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.120.ctst -------------------------------------------------------------------------------- /test/dconv.121.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.121.ctst -------------------------------------------------------------------------------- /test/dconv.122.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.122.ctst -------------------------------------------------------------------------------- /test/dconv.123.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.123.ctst -------------------------------------------------------------------------------- /test/dconv.124.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.124.ctst -------------------------------------------------------------------------------- /test/dconv.125.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.125.ctst -------------------------------------------------------------------------------- /test/dconv.126.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.126.ctst -------------------------------------------------------------------------------- /test/dconv.127.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.127.ctst -------------------------------------------------------------------------------- /test/dconv.128.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.128.ctst -------------------------------------------------------------------------------- /test/dconv.129.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.129.ctst -------------------------------------------------------------------------------- /test/dconv.130.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.130.ctst -------------------------------------------------------------------------------- /test/dconv.131.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.131.ctst -------------------------------------------------------------------------------- /test/dconv.132.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.132.ctst -------------------------------------------------------------------------------- /test/dconv.133.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.133.ctst -------------------------------------------------------------------------------- /test/dconv.134.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.134.ctst -------------------------------------------------------------------------------- /test/dconv.135.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.135.ctst -------------------------------------------------------------------------------- /test/dconv.136.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.136.ctst -------------------------------------------------------------------------------- /test/dconv.137.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.137.ctst -------------------------------------------------------------------------------- /test/dconv.138.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.138.ctst -------------------------------------------------------------------------------- /test/dconv.139.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.139.ctst -------------------------------------------------------------------------------- /test/dconv.140.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.140.ctst -------------------------------------------------------------------------------- /test/dconv.141.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.141.ctst -------------------------------------------------------------------------------- /test/dconv.142.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.142.ctst -------------------------------------------------------------------------------- /test/dconv.143.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.143.ctst -------------------------------------------------------------------------------- /test/dconv.144.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dconv.144.ctst -------------------------------------------------------------------------------- /test/ddiff.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.001.ctst -------------------------------------------------------------------------------- /test/ddiff.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.002.ctst -------------------------------------------------------------------------------- /test/ddiff.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.003.ctst -------------------------------------------------------------------------------- /test/ddiff.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.004.ctst -------------------------------------------------------------------------------- /test/ddiff.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.005.ctst -------------------------------------------------------------------------------- /test/ddiff.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.006.ctst -------------------------------------------------------------------------------- /test/ddiff.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.007.ctst -------------------------------------------------------------------------------- /test/ddiff.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.008.ctst -------------------------------------------------------------------------------- /test/ddiff.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.009.ctst -------------------------------------------------------------------------------- /test/ddiff.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.010.ctst -------------------------------------------------------------------------------- /test/ddiff.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.011.ctst -------------------------------------------------------------------------------- /test/ddiff.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.012.ctst -------------------------------------------------------------------------------- /test/ddiff.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.013.ctst -------------------------------------------------------------------------------- /test/ddiff.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.014.ctst -------------------------------------------------------------------------------- /test/ddiff.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.015.ctst -------------------------------------------------------------------------------- /test/ddiff.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.016.ctst -------------------------------------------------------------------------------- /test/ddiff.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.017.ctst -------------------------------------------------------------------------------- /test/ddiff.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.018.ctst -------------------------------------------------------------------------------- /test/ddiff.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.019.ctst -------------------------------------------------------------------------------- /test/ddiff.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.020.ctst -------------------------------------------------------------------------------- /test/ddiff.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.021.ctst -------------------------------------------------------------------------------- /test/ddiff.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.022.ctst -------------------------------------------------------------------------------- /test/ddiff.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.023.ctst -------------------------------------------------------------------------------- /test/ddiff.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.024.ctst -------------------------------------------------------------------------------- /test/ddiff.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.025.ctst -------------------------------------------------------------------------------- /test/ddiff.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.026.ctst -------------------------------------------------------------------------------- /test/ddiff.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.027.ctst -------------------------------------------------------------------------------- /test/ddiff.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.028.ctst -------------------------------------------------------------------------------- /test/ddiff.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.029.ctst -------------------------------------------------------------------------------- /test/ddiff.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.030.ctst -------------------------------------------------------------------------------- /test/ddiff.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.031.ctst -------------------------------------------------------------------------------- /test/ddiff.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.032.ctst -------------------------------------------------------------------------------- /test/ddiff.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.033.ctst -------------------------------------------------------------------------------- /test/ddiff.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.034.ctst -------------------------------------------------------------------------------- /test/ddiff.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.035.ctst -------------------------------------------------------------------------------- /test/ddiff.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.036.ctst -------------------------------------------------------------------------------- /test/ddiff.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.037.ctst -------------------------------------------------------------------------------- /test/ddiff.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.038.ctst -------------------------------------------------------------------------------- /test/ddiff.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.039.ctst -------------------------------------------------------------------------------- /test/ddiff.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.040.ctst -------------------------------------------------------------------------------- /test/ddiff.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.041.ctst -------------------------------------------------------------------------------- /test/ddiff.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.042.ctst -------------------------------------------------------------------------------- /test/ddiff.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.043.ctst -------------------------------------------------------------------------------- /test/ddiff.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.044.ctst -------------------------------------------------------------------------------- /test/ddiff.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.045.ctst -------------------------------------------------------------------------------- /test/ddiff.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.046.ctst -------------------------------------------------------------------------------- /test/ddiff.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.047.ctst -------------------------------------------------------------------------------- /test/ddiff.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.048.ctst -------------------------------------------------------------------------------- /test/ddiff.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.049.ctst -------------------------------------------------------------------------------- /test/ddiff.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.050.ctst -------------------------------------------------------------------------------- /test/ddiff.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.051.ctst -------------------------------------------------------------------------------- /test/ddiff.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.052.ctst -------------------------------------------------------------------------------- /test/ddiff.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.053.ctst -------------------------------------------------------------------------------- /test/ddiff.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.054.ctst -------------------------------------------------------------------------------- /test/ddiff.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.055.ctst -------------------------------------------------------------------------------- /test/ddiff.056.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.056.ctst -------------------------------------------------------------------------------- /test/ddiff.057.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.057.ctst -------------------------------------------------------------------------------- /test/ddiff.058.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.058.ctst -------------------------------------------------------------------------------- /test/ddiff.059.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.059.ctst -------------------------------------------------------------------------------- /test/ddiff.060.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.060.ctst -------------------------------------------------------------------------------- /test/ddiff.061.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.061.ctst -------------------------------------------------------------------------------- /test/ddiff.062.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.062.ctst -------------------------------------------------------------------------------- /test/ddiff.063.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.063.ctst -------------------------------------------------------------------------------- /test/ddiff.064.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.064.ctst -------------------------------------------------------------------------------- /test/ddiff.065.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.065.ctst -------------------------------------------------------------------------------- /test/ddiff.066.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.066.ctst -------------------------------------------------------------------------------- /test/ddiff.067.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.067.ctst -------------------------------------------------------------------------------- /test/ddiff.068.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.068.ctst -------------------------------------------------------------------------------- /test/ddiff.069.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.069.ctst -------------------------------------------------------------------------------- /test/ddiff.070.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.070.ctst -------------------------------------------------------------------------------- /test/ddiff.071.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.071.ctst -------------------------------------------------------------------------------- /test/ddiff.072.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ddiff.072.ctst -------------------------------------------------------------------------------- /test/dgrep.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.001.ctst -------------------------------------------------------------------------------- /test/dgrep.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.002.ctst -------------------------------------------------------------------------------- /test/dgrep.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.003.ctst -------------------------------------------------------------------------------- /test/dgrep.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.004.ctst -------------------------------------------------------------------------------- /test/dgrep.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.005.ctst -------------------------------------------------------------------------------- /test/dgrep.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.006.ctst -------------------------------------------------------------------------------- /test/dgrep.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.007.ctst -------------------------------------------------------------------------------- /test/dgrep.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.008.ctst -------------------------------------------------------------------------------- /test/dgrep.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.009.ctst -------------------------------------------------------------------------------- /test/dgrep.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.010.ctst -------------------------------------------------------------------------------- /test/dgrep.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.011.ctst -------------------------------------------------------------------------------- /test/dgrep.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.012.ctst -------------------------------------------------------------------------------- /test/dgrep.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.013.ctst -------------------------------------------------------------------------------- /test/dgrep.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.014.ctst -------------------------------------------------------------------------------- /test/dgrep.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.015.ctst -------------------------------------------------------------------------------- /test/dgrep.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.016.ctst -------------------------------------------------------------------------------- /test/dgrep.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.017.ctst -------------------------------------------------------------------------------- /test/dgrep.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.018.ctst -------------------------------------------------------------------------------- /test/dgrep.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.019.ctst -------------------------------------------------------------------------------- /test/dgrep.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.020.ctst -------------------------------------------------------------------------------- /test/dgrep.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.021.ctst -------------------------------------------------------------------------------- /test/dgrep.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.022.ctst -------------------------------------------------------------------------------- /test/dgrep.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.023.ctst -------------------------------------------------------------------------------- /test/dgrep.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.024.ctst -------------------------------------------------------------------------------- /test/dgrep.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.025.ctst -------------------------------------------------------------------------------- /test/dgrep.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.026.ctst -------------------------------------------------------------------------------- /test/dgrep.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.027.ctst -------------------------------------------------------------------------------- /test/dgrep.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.028.ctst -------------------------------------------------------------------------------- /test/dgrep.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.029.ctst -------------------------------------------------------------------------------- /test/dgrep.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.030.ctst -------------------------------------------------------------------------------- /test/dgrep.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.031.ctst -------------------------------------------------------------------------------- /test/dgrep.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.032.ctst -------------------------------------------------------------------------------- /test/dgrep.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.033.ctst -------------------------------------------------------------------------------- /test/dgrep.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.034.ctst -------------------------------------------------------------------------------- /test/dgrep.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.035.ctst -------------------------------------------------------------------------------- /test/dgrep.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.036.ctst -------------------------------------------------------------------------------- /test/dgrep.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.037.ctst -------------------------------------------------------------------------------- /test/dgrep.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.038.ctst -------------------------------------------------------------------------------- /test/dgrep.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.039.ctst -------------------------------------------------------------------------------- /test/dgrep.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.040.ctst -------------------------------------------------------------------------------- /test/dgrep.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.041.ctst -------------------------------------------------------------------------------- /test/dgrep.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.042.ctst -------------------------------------------------------------------------------- /test/dgrep.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dgrep.043.ctst -------------------------------------------------------------------------------- /test/dround.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.001.ctst -------------------------------------------------------------------------------- /test/dround.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.002.ctst -------------------------------------------------------------------------------- /test/dround.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.003.ctst -------------------------------------------------------------------------------- /test/dround.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.004.ctst -------------------------------------------------------------------------------- /test/dround.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.005.ctst -------------------------------------------------------------------------------- /test/dround.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.006.ctst -------------------------------------------------------------------------------- /test/dround.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.007.ctst -------------------------------------------------------------------------------- /test/dround.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.008.ctst -------------------------------------------------------------------------------- /test/dround.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.009.ctst -------------------------------------------------------------------------------- /test/dround.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.010.ctst -------------------------------------------------------------------------------- /test/dround.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.011.ctst -------------------------------------------------------------------------------- /test/dround.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.012.ctst -------------------------------------------------------------------------------- /test/dround.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.013.ctst -------------------------------------------------------------------------------- /test/dround.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.014.ctst -------------------------------------------------------------------------------- /test/dround.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.015.ctst -------------------------------------------------------------------------------- /test/dround.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.016.ctst -------------------------------------------------------------------------------- /test/dround.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.017.ctst -------------------------------------------------------------------------------- /test/dround.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.018.ctst -------------------------------------------------------------------------------- /test/dround.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.019.ctst -------------------------------------------------------------------------------- /test/dround.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.020.ctst -------------------------------------------------------------------------------- /test/dround.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.021.ctst -------------------------------------------------------------------------------- /test/dround.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.022.ctst -------------------------------------------------------------------------------- /test/dround.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.023.ctst -------------------------------------------------------------------------------- /test/dround.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.024.ctst -------------------------------------------------------------------------------- /test/dround.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.025.ctst -------------------------------------------------------------------------------- /test/dround.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.026.ctst -------------------------------------------------------------------------------- /test/dround.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.027.ctst -------------------------------------------------------------------------------- /test/dround.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.028.ctst -------------------------------------------------------------------------------- /test/dround.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.029.ctst -------------------------------------------------------------------------------- /test/dround.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.030.ctst -------------------------------------------------------------------------------- /test/dround.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.031.ctst -------------------------------------------------------------------------------- /test/dround.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.032.ctst -------------------------------------------------------------------------------- /test/dround.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.033.ctst -------------------------------------------------------------------------------- /test/dround.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.034.ctst -------------------------------------------------------------------------------- /test/dround.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.035.ctst -------------------------------------------------------------------------------- /test/dround.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.036.ctst -------------------------------------------------------------------------------- /test/dround.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dround.037.ctst -------------------------------------------------------------------------------- /test/dseq-cnt.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq-cnt.1.sh -------------------------------------------------------------------------------- /test/dseq-cnt.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq-cnt.2.sh -------------------------------------------------------------------------------- /test/dseq-cnt.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq-cnt.3.sh -------------------------------------------------------------------------------- /test/dseq.01.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.01.ctst -------------------------------------------------------------------------------- /test/dseq.02.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.02.ctst -------------------------------------------------------------------------------- /test/dseq.03.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.03.ctst -------------------------------------------------------------------------------- /test/dseq.04.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.04.ctst -------------------------------------------------------------------------------- /test/dseq.05.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.05.ctst -------------------------------------------------------------------------------- /test/dseq.06.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.06.ctst -------------------------------------------------------------------------------- /test/dseq.07.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.07.ctst -------------------------------------------------------------------------------- /test/dseq.08.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.08.ctst -------------------------------------------------------------------------------- /test/dseq.09.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.09.ctst -------------------------------------------------------------------------------- /test/dseq.10.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.10.ctst -------------------------------------------------------------------------------- /test/dseq.11.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.11.ctst -------------------------------------------------------------------------------- /test/dseq.12.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.12.ctst -------------------------------------------------------------------------------- /test/dseq.13.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.13.ctst -------------------------------------------------------------------------------- /test/dseq.14.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.14.ctst -------------------------------------------------------------------------------- /test/dseq.15.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.15.ctst -------------------------------------------------------------------------------- /test/dseq.16.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.16.ctst -------------------------------------------------------------------------------- /test/dseq.17.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.17.ctst -------------------------------------------------------------------------------- /test/dseq.18.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.18.ctst -------------------------------------------------------------------------------- /test/dseq.19.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.19.ctst -------------------------------------------------------------------------------- /test/dseq.20.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.20.ctst -------------------------------------------------------------------------------- /test/dseq.21.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.21.ctst -------------------------------------------------------------------------------- /test/dseq.22.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.22.ctst -------------------------------------------------------------------------------- /test/dseq.23.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.23.ctst -------------------------------------------------------------------------------- /test/dseq.24.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.24.ctst -------------------------------------------------------------------------------- /test/dseq.25.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.25.ctst -------------------------------------------------------------------------------- /test/dseq.26.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.26.ctst -------------------------------------------------------------------------------- /test/dseq.27.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.27.ctst -------------------------------------------------------------------------------- /test/dseq.28.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.28.ctst -------------------------------------------------------------------------------- /test/dseq.29.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.29.ctst -------------------------------------------------------------------------------- /test/dseq.30.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.30.ctst -------------------------------------------------------------------------------- /test/dseq.31.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.31.ctst -------------------------------------------------------------------------------- /test/dseq.32.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.32.ctst -------------------------------------------------------------------------------- /test/dseq.33.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.33.ctst -------------------------------------------------------------------------------- /test/dseq.34.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.34.ctst -------------------------------------------------------------------------------- /test/dseq.35.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.35.ctst -------------------------------------------------------------------------------- /test/dseq.36.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.36.ctst -------------------------------------------------------------------------------- /test/dseq.37.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.37.ctst -------------------------------------------------------------------------------- /test/dseq.38.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.38.ctst -------------------------------------------------------------------------------- /test/dseq.39.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.39.ctst -------------------------------------------------------------------------------- /test/dseq.40.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.40.ctst -------------------------------------------------------------------------------- /test/dseq.41.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.41.ctst -------------------------------------------------------------------------------- /test/dseq.42.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.42.ctst -------------------------------------------------------------------------------- /test/dseq.43.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.43.ctst -------------------------------------------------------------------------------- /test/dseq.44.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.44.ctst -------------------------------------------------------------------------------- /test/dseq.45.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.45.ctst -------------------------------------------------------------------------------- /test/dseq.46.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.46.ctst -------------------------------------------------------------------------------- /test/dseq.47.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.47.ctst -------------------------------------------------------------------------------- /test/dseq.48.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.48.ctst -------------------------------------------------------------------------------- /test/dseq.49.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.49.ctst -------------------------------------------------------------------------------- /test/dseq.50.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.50.ctst -------------------------------------------------------------------------------- /test/dseq.51.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.51.ctst -------------------------------------------------------------------------------- /test/dseq.52.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.52.ctst -------------------------------------------------------------------------------- /test/dseq.53.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.53.ctst -------------------------------------------------------------------------------- /test/dseq.54.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.54.ctst -------------------------------------------------------------------------------- /test/dseq.55.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.55.ctst -------------------------------------------------------------------------------- /test/dseq.56.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.56.ctst -------------------------------------------------------------------------------- /test/dseq.57.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.57.ctst -------------------------------------------------------------------------------- /test/dseq.58.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.58.ctst -------------------------------------------------------------------------------- /test/dseq.59.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.59.ctst -------------------------------------------------------------------------------- /test/dseq.60.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.60.ctst -------------------------------------------------------------------------------- /test/dseq.61.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.61.ctst -------------------------------------------------------------------------------- /test/dseq.62.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.62.ctst -------------------------------------------------------------------------------- /test/dseq.63.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.63.ctst -------------------------------------------------------------------------------- /test/dseq.64.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.64.ctst -------------------------------------------------------------------------------- /test/dseq.65.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.65.ctst -------------------------------------------------------------------------------- /test/dseq.66.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.66.ctst -------------------------------------------------------------------------------- /test/dseq.67.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dseq.67.ctst -------------------------------------------------------------------------------- /test/dsort.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.001.ctst -------------------------------------------------------------------------------- /test/dsort.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.002.ctst -------------------------------------------------------------------------------- /test/dsort.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.003.ctst -------------------------------------------------------------------------------- /test/dsort.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.004.ctst -------------------------------------------------------------------------------- /test/dsort.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.005.ctst -------------------------------------------------------------------------------- /test/dsort.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.006.ctst -------------------------------------------------------------------------------- /test/dsort.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dsort.007.ctst -------------------------------------------------------------------------------- /test/dtadd.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.001.ctst -------------------------------------------------------------------------------- /test/dtadd.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.002.ctst -------------------------------------------------------------------------------- /test/dtadd.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.003.ctst -------------------------------------------------------------------------------- /test/dtadd.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.004.ctst -------------------------------------------------------------------------------- /test/dtadd.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.005.ctst -------------------------------------------------------------------------------- /test/dtadd.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.006.ctst -------------------------------------------------------------------------------- /test/dtadd.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.007.ctst -------------------------------------------------------------------------------- /test/dtadd.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.008.ctst -------------------------------------------------------------------------------- /test/dtadd.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.009.ctst -------------------------------------------------------------------------------- /test/dtadd.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.010.ctst -------------------------------------------------------------------------------- /test/dtadd.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.011.ctst -------------------------------------------------------------------------------- /test/dtadd.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.012.ctst -------------------------------------------------------------------------------- /test/dtadd.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.013.ctst -------------------------------------------------------------------------------- /test/dtadd.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.014.ctst -------------------------------------------------------------------------------- /test/dtadd.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.015.ctst -------------------------------------------------------------------------------- /test/dtadd.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.016.ctst -------------------------------------------------------------------------------- /test/dtadd.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.017.ctst -------------------------------------------------------------------------------- /test/dtadd.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.018.ctst -------------------------------------------------------------------------------- /test/dtadd.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.019.ctst -------------------------------------------------------------------------------- /test/dtadd.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.020.ctst -------------------------------------------------------------------------------- /test/dtadd.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.021.ctst -------------------------------------------------------------------------------- /test/dtadd.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.022.ctst -------------------------------------------------------------------------------- /test/dtadd.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.023.ctst -------------------------------------------------------------------------------- /test/dtadd.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.024.ctst -------------------------------------------------------------------------------- /test/dtadd.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.025.ctst -------------------------------------------------------------------------------- /test/dtadd.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.026.ctst -------------------------------------------------------------------------------- /test/dtadd.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.027.ctst -------------------------------------------------------------------------------- /test/dtadd.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.028.ctst -------------------------------------------------------------------------------- /test/dtadd.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.029.ctst -------------------------------------------------------------------------------- /test/dtadd.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.030.ctst -------------------------------------------------------------------------------- /test/dtadd.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.031.ctst -------------------------------------------------------------------------------- /test/dtadd.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.032.ctst -------------------------------------------------------------------------------- /test/dtadd.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.033.ctst -------------------------------------------------------------------------------- /test/dtadd.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.034.ctst -------------------------------------------------------------------------------- /test/dtadd.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.035.ctst -------------------------------------------------------------------------------- /test/dtadd.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.036.ctst -------------------------------------------------------------------------------- /test/dtadd.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.037.ctst -------------------------------------------------------------------------------- /test/dtadd.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.038.ctst -------------------------------------------------------------------------------- /test/dtadd.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.039.ctst -------------------------------------------------------------------------------- /test/dtadd.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.040.ctst -------------------------------------------------------------------------------- /test/dtadd.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.041.ctst -------------------------------------------------------------------------------- /test/dtadd.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.042.ctst -------------------------------------------------------------------------------- /test/dtadd.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.043.ctst -------------------------------------------------------------------------------- /test/dtadd.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.044.ctst -------------------------------------------------------------------------------- /test/dtadd.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.045.ctst -------------------------------------------------------------------------------- /test/dtadd.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.046.ctst -------------------------------------------------------------------------------- /test/dtadd.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.047.ctst -------------------------------------------------------------------------------- /test/dtadd.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.048.ctst -------------------------------------------------------------------------------- /test/dtadd.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.049.ctst -------------------------------------------------------------------------------- /test/dtadd.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.050.ctst -------------------------------------------------------------------------------- /test/dtadd.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.051.ctst -------------------------------------------------------------------------------- /test/dtadd.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.052.ctst -------------------------------------------------------------------------------- /test/dtadd.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.053.ctst -------------------------------------------------------------------------------- /test/dtadd.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.054.ctst -------------------------------------------------------------------------------- /test/dtadd.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtadd.055.ctst -------------------------------------------------------------------------------- /test/dtconv.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.001.ctst -------------------------------------------------------------------------------- /test/dtconv.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.002.ctst -------------------------------------------------------------------------------- /test/dtconv.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.003.ctst -------------------------------------------------------------------------------- /test/dtconv.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.004.ctst -------------------------------------------------------------------------------- /test/dtconv.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.005.ctst -------------------------------------------------------------------------------- /test/dtconv.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.006.ctst -------------------------------------------------------------------------------- /test/dtconv.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.007.ctst -------------------------------------------------------------------------------- /test/dtconv.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.008.ctst -------------------------------------------------------------------------------- /test/dtconv.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.009.ctst -------------------------------------------------------------------------------- /test/dtconv.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.010.ctst -------------------------------------------------------------------------------- /test/dtconv.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.011.ctst -------------------------------------------------------------------------------- /test/dtconv.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.012.ctst -------------------------------------------------------------------------------- /test/dtconv.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.013.ctst -------------------------------------------------------------------------------- /test/dtconv.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.014.ctst -------------------------------------------------------------------------------- /test/dtconv.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.015.ctst -------------------------------------------------------------------------------- /test/dtconv.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.016.ctst -------------------------------------------------------------------------------- /test/dtconv.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.017.ctst -------------------------------------------------------------------------------- /test/dtconv.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.018.ctst -------------------------------------------------------------------------------- /test/dtconv.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.019.ctst -------------------------------------------------------------------------------- /test/dtconv.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.020.ctst -------------------------------------------------------------------------------- /test/dtconv.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.021.ctst -------------------------------------------------------------------------------- /test/dtconv.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.022.ctst -------------------------------------------------------------------------------- /test/dtconv.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.023.ctst -------------------------------------------------------------------------------- /test/dtconv.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.024.ctst -------------------------------------------------------------------------------- /test/dtconv.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.025.ctst -------------------------------------------------------------------------------- /test/dtconv.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.026.ctst -------------------------------------------------------------------------------- /test/dtconv.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.027.ctst -------------------------------------------------------------------------------- /test/dtconv.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.028.ctst -------------------------------------------------------------------------------- /test/dtconv.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.029.ctst -------------------------------------------------------------------------------- /test/dtconv.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.030.ctst -------------------------------------------------------------------------------- /test/dtconv.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.031.ctst -------------------------------------------------------------------------------- /test/dtconv.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.032.ctst -------------------------------------------------------------------------------- /test/dtconv.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.033.ctst -------------------------------------------------------------------------------- /test/dtconv.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.034.ctst -------------------------------------------------------------------------------- /test/dtconv.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.035.ctst -------------------------------------------------------------------------------- /test/dtconv.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.036.ctst -------------------------------------------------------------------------------- /test/dtconv.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.037.ctst -------------------------------------------------------------------------------- /test/dtconv.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.038.ctst -------------------------------------------------------------------------------- /test/dtconv.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.039.ctst -------------------------------------------------------------------------------- /test/dtconv.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.040.ctst -------------------------------------------------------------------------------- /test/dtconv.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.041.ctst -------------------------------------------------------------------------------- /test/dtconv.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.042.ctst -------------------------------------------------------------------------------- /test/dtconv.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.043.ctst -------------------------------------------------------------------------------- /test/dtconv.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.044.ctst -------------------------------------------------------------------------------- /test/dtconv.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.045.ctst -------------------------------------------------------------------------------- /test/dtconv.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.046.ctst -------------------------------------------------------------------------------- /test/dtconv.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.047.ctst -------------------------------------------------------------------------------- /test/dtconv.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.048.ctst -------------------------------------------------------------------------------- /test/dtconv.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.049.ctst -------------------------------------------------------------------------------- /test/dtconv.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.050.ctst -------------------------------------------------------------------------------- /test/dtconv.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.051.ctst -------------------------------------------------------------------------------- /test/dtconv.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.052.ctst -------------------------------------------------------------------------------- /test/dtconv.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.053.ctst -------------------------------------------------------------------------------- /test/dtconv.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.054.ctst -------------------------------------------------------------------------------- /test/dtconv.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.055.ctst -------------------------------------------------------------------------------- /test/dtconv.056.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.056.ctst -------------------------------------------------------------------------------- /test/dtconv.057.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.057.ctst -------------------------------------------------------------------------------- /test/dtconv.058.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.058.ctst -------------------------------------------------------------------------------- /test/dtconv.059.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.059.ctst -------------------------------------------------------------------------------- /test/dtconv.060.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.060.ctst -------------------------------------------------------------------------------- /test/dtconv.061.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.061.ctst -------------------------------------------------------------------------------- /test/dtconv.062.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.062.ctst -------------------------------------------------------------------------------- /test/dtconv.063.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.063.ctst -------------------------------------------------------------------------------- /test/dtconv.064.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.064.ctst -------------------------------------------------------------------------------- /test/dtconv.065.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.065.ctst -------------------------------------------------------------------------------- /test/dtconv.066.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.066.ctst -------------------------------------------------------------------------------- /test/dtconv.067.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.067.ctst -------------------------------------------------------------------------------- /test/dtconv.068.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.068.ctst -------------------------------------------------------------------------------- /test/dtconv.069.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.069.ctst -------------------------------------------------------------------------------- /test/dtconv.070.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.070.ctst -------------------------------------------------------------------------------- /test/dtconv.071.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.071.ctst -------------------------------------------------------------------------------- /test/dtconv.072.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtconv.072.ctst -------------------------------------------------------------------------------- /test/dtcore-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtcore-add.c -------------------------------------------------------------------------------- /test/dtcore-conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtcore-conv.c -------------------------------------------------------------------------------- /test/dtcore-strp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtcore-strp.c -------------------------------------------------------------------------------- /test/dtdiff.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.001.ctst -------------------------------------------------------------------------------- /test/dtdiff.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.002.ctst -------------------------------------------------------------------------------- /test/dtdiff.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.003.ctst -------------------------------------------------------------------------------- /test/dtdiff.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.004.ctst -------------------------------------------------------------------------------- /test/dtdiff.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.005.ctst -------------------------------------------------------------------------------- /test/dtdiff.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.006.ctst -------------------------------------------------------------------------------- /test/dtdiff.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.007.ctst -------------------------------------------------------------------------------- /test/dtdiff.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.008.ctst -------------------------------------------------------------------------------- /test/dtdiff.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.009.ctst -------------------------------------------------------------------------------- /test/dtdiff.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.010.ctst -------------------------------------------------------------------------------- /test/dtdiff.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.011.ctst -------------------------------------------------------------------------------- /test/dtdiff.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.012.ctst -------------------------------------------------------------------------------- /test/dtdiff.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.013.ctst -------------------------------------------------------------------------------- /test/dtdiff.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.014.ctst -------------------------------------------------------------------------------- /test/dtdiff.015.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.015.ctst -------------------------------------------------------------------------------- /test/dtdiff.016.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.016.ctst -------------------------------------------------------------------------------- /test/dtdiff.017.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.017.ctst -------------------------------------------------------------------------------- /test/dtdiff.018.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.018.ctst -------------------------------------------------------------------------------- /test/dtdiff.019.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.019.ctst -------------------------------------------------------------------------------- /test/dtdiff.020.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.020.ctst -------------------------------------------------------------------------------- /test/dtdiff.021.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.021.ctst -------------------------------------------------------------------------------- /test/dtdiff.022.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.022.ctst -------------------------------------------------------------------------------- /test/dtdiff.023.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.023.ctst -------------------------------------------------------------------------------- /test/dtdiff.024.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.024.ctst -------------------------------------------------------------------------------- /test/dtdiff.025.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.025.ctst -------------------------------------------------------------------------------- /test/dtdiff.026.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.026.ctst -------------------------------------------------------------------------------- /test/dtdiff.027.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.027.ctst -------------------------------------------------------------------------------- /test/dtdiff.028.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.028.ctst -------------------------------------------------------------------------------- /test/dtdiff.029.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.029.ctst -------------------------------------------------------------------------------- /test/dtdiff.030.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.030.ctst -------------------------------------------------------------------------------- /test/dtdiff.031.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.031.ctst -------------------------------------------------------------------------------- /test/dtdiff.032.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.032.ctst -------------------------------------------------------------------------------- /test/dtdiff.033.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.033.ctst -------------------------------------------------------------------------------- /test/dtdiff.034.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.034.ctst -------------------------------------------------------------------------------- /test/dtdiff.035.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.035.ctst -------------------------------------------------------------------------------- /test/dtdiff.036.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.036.ctst -------------------------------------------------------------------------------- /test/dtdiff.037.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.037.ctst -------------------------------------------------------------------------------- /test/dtdiff.038.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.038.ctst -------------------------------------------------------------------------------- /test/dtdiff.039.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.039.ctst -------------------------------------------------------------------------------- /test/dtdiff.040.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.040.ctst -------------------------------------------------------------------------------- /test/dtdiff.041.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.041.ctst -------------------------------------------------------------------------------- /test/dtdiff.042.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.042.ctst -------------------------------------------------------------------------------- /test/dtdiff.043.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.043.ctst -------------------------------------------------------------------------------- /test/dtdiff.044.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.044.ctst -------------------------------------------------------------------------------- /test/dtdiff.045.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.045.ctst -------------------------------------------------------------------------------- /test/dtdiff.046.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.046.ctst -------------------------------------------------------------------------------- /test/dtdiff.047.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.047.ctst -------------------------------------------------------------------------------- /test/dtdiff.048.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.048.ctst -------------------------------------------------------------------------------- /test/dtdiff.049.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.049.ctst -------------------------------------------------------------------------------- /test/dtdiff.050.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.050.ctst -------------------------------------------------------------------------------- /test/dtdiff.051.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.051.ctst -------------------------------------------------------------------------------- /test/dtdiff.052.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.052.ctst -------------------------------------------------------------------------------- /test/dtdiff.053.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.053.ctst -------------------------------------------------------------------------------- /test/dtdiff.054.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.054.ctst -------------------------------------------------------------------------------- /test/dtdiff.055.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtdiff.055.ctst -------------------------------------------------------------------------------- /test/dtest.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.001.ctst -------------------------------------------------------------------------------- /test/dtest.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.002.ctst -------------------------------------------------------------------------------- /test/dtest.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.003.ctst -------------------------------------------------------------------------------- /test/dtest.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.004.ctst -------------------------------------------------------------------------------- /test/dtest.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.005.ctst -------------------------------------------------------------------------------- /test/dtest.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.006.ctst -------------------------------------------------------------------------------- /test/dtest.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.007.ctst -------------------------------------------------------------------------------- /test/dtest.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.008.ctst -------------------------------------------------------------------------------- /test/dtest.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.009.ctst -------------------------------------------------------------------------------- /test/dtest.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.010.ctst -------------------------------------------------------------------------------- /test/dtest.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.011.ctst -------------------------------------------------------------------------------- /test/dtest.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtest.012.ctst -------------------------------------------------------------------------------- /test/dtgrep.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtgrep.001.ctst -------------------------------------------------------------------------------- /test/dtgrep.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtgrep.002.ctst -------------------------------------------------------------------------------- /test/dtseq.01.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.01.ctst -------------------------------------------------------------------------------- /test/dtseq.02.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.02.ctst -------------------------------------------------------------------------------- /test/dtseq.03.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.03.ctst -------------------------------------------------------------------------------- /test/dtseq.04.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.04.ctst -------------------------------------------------------------------------------- /test/dtseq.05.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.05.ctst -------------------------------------------------------------------------------- /test/dtseq.06.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.06.ctst -------------------------------------------------------------------------------- /test/dtseq.07.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.07.ctst -------------------------------------------------------------------------------- /test/dtseq.08.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.08.ctst -------------------------------------------------------------------------------- /test/dtseq.09.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.09.ctst -------------------------------------------------------------------------------- /test/dtseq.10.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.10.ctst -------------------------------------------------------------------------------- /test/dtseq.11.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.11.ctst -------------------------------------------------------------------------------- /test/dtseq.12.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtseq.12.ctst -------------------------------------------------------------------------------- /test/dtz.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtz.001.ctst -------------------------------------------------------------------------------- /test/dtz.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dtz.002.ctst -------------------------------------------------------------------------------- /test/dummy.tzmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dummy.tzmap -------------------------------------------------------------------------------- /test/dzone.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.001.ctst -------------------------------------------------------------------------------- /test/dzone.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.002.ctst -------------------------------------------------------------------------------- /test/dzone.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.003.ctst -------------------------------------------------------------------------------- /test/dzone.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.004.ctst -------------------------------------------------------------------------------- /test/dzone.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.005.ctst -------------------------------------------------------------------------------- /test/dzone.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.006.ctst -------------------------------------------------------------------------------- /test/dzone.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.007.ctst -------------------------------------------------------------------------------- /test/dzone.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.008.ctst -------------------------------------------------------------------------------- /test/dzone.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.009.ctst -------------------------------------------------------------------------------- /test/dzone.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.010.ctst -------------------------------------------------------------------------------- /test/dzone.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.011.ctst -------------------------------------------------------------------------------- /test/dzone.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.012.ctst -------------------------------------------------------------------------------- /test/dzone.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.013.ctst -------------------------------------------------------------------------------- /test/dzone.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/dzone.014.ctst -------------------------------------------------------------------------------- /test/enum-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/enum-1.c -------------------------------------------------------------------------------- /test/itostr-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/itostr-1.c -------------------------------------------------------------------------------- /test/itostr-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/itostr-2.c -------------------------------------------------------------------------------- /test/itostr-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/itostr-3.c -------------------------------------------------------------------------------- /test/itostr-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/itostr-4.c -------------------------------------------------------------------------------- /test/strtoi-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/strtoi-1.c -------------------------------------------------------------------------------- /test/strtoi-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/strtoi-bench.c -------------------------------------------------------------------------------- /test/struct-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-1.c -------------------------------------------------------------------------------- /test/struct-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-2.c -------------------------------------------------------------------------------- /test/struct-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-3.c -------------------------------------------------------------------------------- /test/struct-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-4.c -------------------------------------------------------------------------------- /test/struct-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-5.c -------------------------------------------------------------------------------- /test/struct-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-6.c -------------------------------------------------------------------------------- /test/struct-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-7.c -------------------------------------------------------------------------------- /test/struct-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-8.c -------------------------------------------------------------------------------- /test/struct-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/struct-9.c -------------------------------------------------------------------------------- /test/tadd.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.001.ctst -------------------------------------------------------------------------------- /test/tadd.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.002.ctst -------------------------------------------------------------------------------- /test/tadd.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.003.ctst -------------------------------------------------------------------------------- /test/tadd.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.004.ctst -------------------------------------------------------------------------------- /test/tadd.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.005.ctst -------------------------------------------------------------------------------- /test/tadd.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.006.ctst -------------------------------------------------------------------------------- /test/tadd.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.007.ctst -------------------------------------------------------------------------------- /test/tadd.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.008.ctst -------------------------------------------------------------------------------- /test/tadd.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.009.ctst -------------------------------------------------------------------------------- /test/tadd.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.010.ctst -------------------------------------------------------------------------------- /test/tadd.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tadd.011.ctst -------------------------------------------------------------------------------- /test/tconv.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.001.ctst -------------------------------------------------------------------------------- /test/tconv.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.002.ctst -------------------------------------------------------------------------------- /test/tconv.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.003.ctst -------------------------------------------------------------------------------- /test/tconv.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.004.ctst -------------------------------------------------------------------------------- /test/tconv.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.005.ctst -------------------------------------------------------------------------------- /test/tconv.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.006.ctst -------------------------------------------------------------------------------- /test/tconv.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.007.ctst -------------------------------------------------------------------------------- /test/tconv.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.008.ctst -------------------------------------------------------------------------------- /test/tconv.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.009.ctst -------------------------------------------------------------------------------- /test/tconv.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.010.ctst -------------------------------------------------------------------------------- /test/tconv.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.011.ctst -------------------------------------------------------------------------------- /test/tconv.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.012.ctst -------------------------------------------------------------------------------- /test/tconv.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.013.ctst -------------------------------------------------------------------------------- /test/tconv.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tconv.014.ctst -------------------------------------------------------------------------------- /test/tdiff.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.001.ctst -------------------------------------------------------------------------------- /test/tdiff.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.002.ctst -------------------------------------------------------------------------------- /test/tdiff.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.003.ctst -------------------------------------------------------------------------------- /test/tdiff.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.004.ctst -------------------------------------------------------------------------------- /test/tdiff.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.005.ctst -------------------------------------------------------------------------------- /test/tdiff.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.006.ctst -------------------------------------------------------------------------------- /test/tdiff.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.007.ctst -------------------------------------------------------------------------------- /test/tdiff.008.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.008.ctst -------------------------------------------------------------------------------- /test/tdiff.009.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.009.ctst -------------------------------------------------------------------------------- /test/tdiff.010.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.010.ctst -------------------------------------------------------------------------------- /test/tdiff.011.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.011.ctst -------------------------------------------------------------------------------- /test/tdiff.012.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.012.ctst -------------------------------------------------------------------------------- /test/tdiff.013.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.013.ctst -------------------------------------------------------------------------------- /test/tdiff.014.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tdiff.014.ctst -------------------------------------------------------------------------------- /test/tgrep.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tgrep.001.ctst -------------------------------------------------------------------------------- /test/tgrep.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tgrep.002.ctst -------------------------------------------------------------------------------- /test/tgrep.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tgrep.003.ctst -------------------------------------------------------------------------------- /test/tseq.01.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.01.ctst -------------------------------------------------------------------------------- /test/tseq.02.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.02.ctst -------------------------------------------------------------------------------- /test/tseq.03.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.03.ctst -------------------------------------------------------------------------------- /test/tseq.04.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.04.ctst -------------------------------------------------------------------------------- /test/tseq.05.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.05.ctst -------------------------------------------------------------------------------- /test/tseq.06.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.06.ctst -------------------------------------------------------------------------------- /test/tseq.07.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.07.ctst -------------------------------------------------------------------------------- /test/tseq.08.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.08.ctst -------------------------------------------------------------------------------- /test/tseq.09.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.09.ctst -------------------------------------------------------------------------------- /test/tseq.10.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.10.ctst -------------------------------------------------------------------------------- /test/tseq.11.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.11.ctst -------------------------------------------------------------------------------- /test/tseq.12.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.12.ctst -------------------------------------------------------------------------------- /test/tseq.13.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.13.ctst -------------------------------------------------------------------------------- /test/tseq.14.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.14.ctst -------------------------------------------------------------------------------- /test/tseq.15.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.15.ctst -------------------------------------------------------------------------------- /test/tseq.16.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.16.ctst -------------------------------------------------------------------------------- /test/tseq.17.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.17.ctst -------------------------------------------------------------------------------- /test/tseq.18.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.18.ctst -------------------------------------------------------------------------------- /test/tseq.19.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tseq.19.ctst -------------------------------------------------------------------------------- /test/ttest.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.001.ctst -------------------------------------------------------------------------------- /test/ttest.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.002.ctst -------------------------------------------------------------------------------- /test/ttest.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.003.ctst -------------------------------------------------------------------------------- /test/ttest.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.004.ctst -------------------------------------------------------------------------------- /test/ttest.005.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.005.ctst -------------------------------------------------------------------------------- /test/ttest.006.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.006.ctst -------------------------------------------------------------------------------- /test/ttest.007.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/ttest.007.ctst -------------------------------------------------------------------------------- /test/tzmap.001.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tzmap.001.ctst -------------------------------------------------------------------------------- /test/tzmap.002.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tzmap.002.ctst -------------------------------------------------------------------------------- /test/tzmap.003.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tzmap.003.ctst -------------------------------------------------------------------------------- /test/tzmap.004.ctst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/test/tzmap.004.ctst -------------------------------------------------------------------------------- /version.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hroptatyr/dateutils/HEAD/version.mk.in --------------------------------------------------------------------------------