mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
ecc89c9a6a
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15729 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
351 B
C
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
|