plan9port/src/lib9/dirstat.c

29 lines
438 B
C
Raw Normal View History

2003-11-23 18:12:54 +00:00
#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
2003-11-23 18:12:54 +00:00
#include <sys/stat.h>
2003-11-23 18:12:54 +00:00
extern int _p9dir(struct stat*, char*, Dir*, char**, char*);
2003-11-23 18:12:54 +00:00
Dir*
dirstat(char *file)
{
2003-11-23 18:12:54 +00:00
struct stat st;
int nstr;
Dir *d;
char *str;
if(stat(file, &st) < 0)
return nil;
nstr = _p9dir(&st, file, nil, nil, nil);
d = mallocz(sizeof(Dir)+nstr, 1);
if(d == nil)
return nil;
str = (char*)&d[1];
_p9dir(&st, file, d, &str, str+nstr);
return d;
}