summaryrefslogtreecommitdiffstats
path: root/gnu/lib/libdialog/dir.h
blob: eadc0c5cb2f10985548662e5ac7d85890d1c99c3 (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
/*
 * include file for dir.c
 *
 * Copyright (c) 1995, Marc van Kempen
 *
 * All rights reserved.
 *
 * This software may be used, modified, copied, distributed, and
 * sold, in both source and binary form provided that the above
 * copyright and these terms are retained, verbatim, as the first
 * lines of this file.  Under no circumstances is the author
 * responsible for the proper functioning of this software, nor does
 * the author assume any responsibility for damages incurred with
 * its use.
 *
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <sys/dirent.h>

typedef struct DirList {             /* structure to hold the directory entries */
    char        filename[MAXNAMLEN]; /* together with the stat-info per file */
    struct stat filestatus;          /* filename, or the name to which it points */
    int         link;                /* is it a link ? */
    char        *linkname;           /* the name of the file the link points to */
} DirList;

#ifndef TRUE
#define TRUE (1)
#endif
#ifndef FALSE
#define FALSE (0)
#endif

void get_dir(char *dirname, char *fmask, DirList **dir, int *n);
void get_filenames(DirList *d, int n, char ***names, int *nf);
void FreeDir(DirList *d, int n);
OpenPOWER on IntegriCloud