blob: 12cbacd54f62274c68ee050fcbd5c1e85bf2dc31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// SPDX-License-Identifier: MIT
#ifndef __cplusplus
# include <stdio.h>
# include <stdlib.h>
#else
# include <cstdio>
# include <cstdlib>
#endif
#include <libHX/init.h>
#include <libHX/io.h>
#include <libHX/misc.h>
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;
}
|