Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | ******************************************************************************* |
michael@0 | 3 | * |
michael@0 | 4 | * Copyright (C) 2009, International Business Machines |
michael@0 | 5 | * Corporation and others. All Rights Reserved. |
michael@0 | 6 | * |
michael@0 | 7 | ******************************************************************************* |
michael@0 | 8 | * file name: filetools.h |
michael@0 | 9 | * encoding: US-ASCII |
michael@0 | 10 | * tab size: 8 (not used) |
michael@0 | 11 | * indentation:4 |
michael@0 | 12 | * |
michael@0 | 13 | * created on: 2009jan09 |
michael@0 | 14 | * created by: Michael Ow |
michael@0 | 15 | * |
michael@0 | 16 | * Contains various functions to handle files. |
michael@0 | 17 | * Not suitable for production use. Not supported. |
michael@0 | 18 | * Not conformant. Not efficient. |
michael@0 | 19 | */ |
michael@0 | 20 | |
michael@0 | 21 | #ifndef __FILETOOLS_H__ |
michael@0 | 22 | #define __FILETOOLS_H__ |
michael@0 | 23 | |
michael@0 | 24 | #include "unicode/utypes.h" |
michael@0 | 25 | |
michael@0 | 26 | U_CAPI UBool U_EXPORT2 |
michael@0 | 27 | isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE); |
michael@0 | 28 | |
michael@0 | 29 | U_CAPI void U_EXPORT2 |
michael@0 | 30 | swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar); |
michael@0 | 31 | |
michael@0 | 32 | #endif |