1 /***********************************************************************
3 * This software is part of the ast package *
4 * Copyright (c) 1985-2010 AT&T Intellectual Property *
5 * and is licensed under the *
6 * Common Public License, Version 1.0 *
7 * by AT&T Intellectual Property *
9 * A copy of the License is available at *
10 * http://www.opensource.org/licenses/cpl1.0.txt *
11 * (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
13 * Information and Software Systems Research *
17 * Glenn Fowler <gsf@research.att.com> *
18 * David Korn <dgk@research.att.com> *
19 * Phong Vo <kpv@research.att.com> *
21 ***********************************************************************/
26 * read from directory stream
28 * NOTE: directory entries must fit within DIRBLKSIZ boundaries
40 readdir(register DIR* dirp
)
42 register struct dirent
* dp
;
46 if (dirp
->dd_loc
>= dirp
->dd_size
)
48 if (dirp
->dd_size
< 0) return(0);
50 if ((dirp
->dd_size
= getdents(dirp
->dd_fd
, dirp
->dd_buf
, DIRBLKSIZ
)) <= 0)
53 dp
= (struct dirent
*)((char*)dirp
->dd_buf
+ dirp
->dd_loc
);
54 if (dp
->d_reclen
<= 0) return(0);
55 dirp
->dd_loc
+= dp
->d_reclen
;
56 if (dp
->d_fileno
) return(dp
);