1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/tools/toolutil/filetools.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* 1.5 +******************************************************************************* 1.6 +* 1.7 +* Copyright (C) 2009, International Business Machines 1.8 +* Corporation and others. All Rights Reserved. 1.9 +* 1.10 +******************************************************************************* 1.11 +* file name: filetools.h 1.12 +* encoding: US-ASCII 1.13 +* tab size: 8 (not used) 1.14 +* indentation:4 1.15 +* 1.16 +* created on: 2009jan09 1.17 +* created by: Michael Ow 1.18 +* 1.19 +* Contains various functions to handle files. 1.20 +* Not suitable for production use. Not supported. 1.21 +* Not conformant. Not efficient. 1.22 +*/ 1.23 + 1.24 +#ifndef __FILETOOLS_H__ 1.25 +#define __FILETOOLS_H__ 1.26 + 1.27 +#include "unicode/utypes.h" 1.28 + 1.29 +U_CAPI UBool U_EXPORT2 1.30 +isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE); 1.31 + 1.32 +U_CAPI void U_EXPORT2 1.33 +swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar); 1.34 + 1.35 +#endif