Changeset 3133 for trunk/tools
- Timestamp:
- Mar 17, 2000, 12:53:34 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/fastdep/fastdep.c
r3132 r3133 1 /* $Id: fastdep.c,v 1.1 0 2000-03-16 23:51:26bird Exp $1 /* $Id: fastdep.c,v 1.11 2000-03-16 23:53:34 bird Exp $ 2 2 * 3 3 * Fast dependents. (Fast = Quick and Dirty!) … … 163 163 static BOOL filecacheAddFile(const char *pszFilename); 164 164 static BOOL filecacheAddDir(const char *pszDir); 165 staticBOOL filecacheFind(const char *pszFilename);166 staticBOOL filecacheIsDirCached(const char *pszDir);165 INLINE BOOL filecacheFind(const char *pszFilename); 166 INLINE BOOL filecacheIsDirCached(const char *pszDir); 167 167 168 168 /* pathlist operations */ … … 1614 1614 * This is in lower case! 1615 1615 */ 1616 staticBOOL filecacheFind(const char *pszFilename)1616 INLINE BOOL filecacheFind(const char *pszFilename) 1617 1617 { 1618 1618 return AVLGet(&pfcTree, (AVLKEY)pszFilename) != NULL; … … 1626 1626 * This is in lower case! 1627 1627 */ 1628 staticBOOL filecacheIsDirCached(const char *pszDir)1628 INLINE BOOL filecacheIsDirCached(const char *pszDir) 1629 1629 { 1630 1630 return AVLGet(&pfcDirTree, (AVLKEY)pszDir) != NULL;
Note:
See TracChangeset
for help on using the changeset viewer.