From bd82d030011cd8b9655e5ded6b6df9343b42a6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 4 Feb 2015 14:09:54 +0100 Subject: Imported Upstream version 3.22 --- src/tc-dir.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/tc-dir.c (limited to 'src/tc-dir.c') diff --git a/src/tc-dir.c b/src/tc-dir.c new file mode 100644 index 0000000..b87517a --- /dev/null +++ b/src/tc-dir.c @@ -0,0 +1,45 @@ +/* + * Copyright Jan Engelhardt + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the WTF Public License version 2 or + * (at your option) any later version. + */ +#ifndef __cplusplus +# include +# include +#else +# include +# include +#endif +#include +#include + +static void lookatdir(const char *dname) +{ + struct HXdir *dh; + const char *n; + + dh = HXdir_open(dname); + printf("Available files in %s:\n", dname); + while ((n = HXdir_read(dh)) != NULL) + printf("\t" "%s\n", n); + HXdir_close(dh); +} + +int main(int argc, const char **argv) +{ + if (HX_init() <= 0) + abort(); + if (argc == 1) { + /* On Windows VCRT, "/" yields nothing, "c:/" is needed */ + lookatdir("/"); + lookatdir("c:/"); + lookatdir("."); + } else { + while (*++argv != NULL) + lookatdir(*argv); + } + HX_exit(); + return EXIT_SUCCESS; +} -- cgit v1.2.3