buildtools/jam/beos_stat_cache.h
Ingo Weinhold ecc89c9a6a Moved jam into the buildtools modules, where it belongs.
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15729 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-12-29 18:40:48 +00:00

16 lines
351 B
C

// beos_stat_cache.h
#ifndef BEOS_STAT_CACHE_H
#define BEOS_STAT_CACHE_H
#include <dirent.h>
#include <sys/stat.h>
int beos_stat_cache_stat(const char *filename, struct stat *st);
DIR* beos_stat_cache_opendir(const char *dirName);
struct dirent *beos_stat_cache_readdir(DIR *dir);
int beos_stat_cache_closedir(DIR *dir);
#endif BEOS_STAT_CACHE_H