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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/*
* SCCS: @(#)lsdir.c 1.3 (98/11/26)
*
* UniSoft Ltd., London, England
*
* (C) Copyright 1996 X/Open Company Limited
*
* All rights reserved. No part of this source code may be reproduced,
* stored in a retrieval system, or transmitted, in any form or by any
* means, electronic, mechanical, photocopying, recording or otherwise,
* except as stated in the end-user licence agreement, without the prior
* permission of the copyright owners.
* A copy of the end-user licence agreement is contained in the file
* Licence which accompanies this distribution.
*
* X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
* the UK and other countries.
*/
/************************************************************************
SCCS: @(#)lsdir.c 1.3 98/11/26 TETware release 3.3
NAME: lsdir.c
PRODUCT: TETware
AUTHOR: Andrew Dingwall, UniSoft Ltd.
DATE CREATED: October 1996
DESCRIPTION:
function to generate a directory listing
this function moved from tccd/tsfile.c to here
MODIFICATIONS:
Andrew Dingwall, UniSoft Ltd., March 1998
Excluded "." from the list of directory entries returned by
tcf_lsdir() - it's not used anywhere.
Andrew Dingwall, UniSoft Ltd., November 1998
added <sys/types.h> for the benefit of FreeBSD
************************************************************************/
#include <stdio.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
#include "dtmac.h"
#include "tetdir.h"
#include "error.h"
#include "dtetlib.h"
#include "tcclib.h"
/*
** tcf_lsdir() - return a pointer to a list of pointers to directory entries
**
** return (char **) 0 on error
**
** the return list excludes "." and ".."
*/
char **tcf_lsdir(dir)
char *dir;
{
register DIR *dirp;
register struct dirent *dp;
register int n, nfiles;
register char **fip;
char **files = (char **) 0;
int flen = 0;
/* open the directory */
if ((dirp = OPENDIR(dir)) == (DIR *) 0) {
error(errno, "can't open", dir);
return((char **) 0);
}
/* count the files in the directory and store their names */
nfiles = 0;
while ((dp = READDIR(dirp)) != (struct dirent *) 0) {
if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
continue;
n = (nfiles + 2) * sizeof *files;
if (BUFCHK((char **) &files, &flen, n) < 0) {
break;
}
fip = files + nfiles;
if ((*fip = tet_strstore(dp->d_name)) == (char *) 0) {
break;
}
*++fip = (char *) 0;
nfiles++;
}
(void) CLOSEDIR(dirp);
return(files);
}
|