Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* |
michael@0 | 2 | ******************************************************************************* |
michael@0 | 3 | * |
michael@0 | 4 | * Copyright (C) 2009-2011, International Business Machines |
michael@0 | 5 | * Corporation and others. All Rights Reserved. |
michael@0 | 6 | * |
michael@0 | 7 | ******************************************************************************* |
michael@0 | 8 | * file name: flagparser.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: 2009jan08 |
michael@0 | 14 | * created by: Michael Ow |
michael@0 | 15 | * |
michael@0 | 16 | * Tiny flag file parser using ICU and intended for use in ICU tests and in build tools. |
michael@0 | 17 | * Not suitable for production use. Not supported. |
michael@0 | 18 | * Not conformant. Not efficient. |
michael@0 | 19 | * But very small. |
michael@0 | 20 | */ |
michael@0 | 21 | |
michael@0 | 22 | #ifndef __FLAGPARSER_H__ |
michael@0 | 23 | #define __FLAGPARSER_H__ |
michael@0 | 24 | |
michael@0 | 25 | #include "unicode/utypes.h" |
michael@0 | 26 | |
michael@0 | 27 | U_CAPI int32_t U_EXPORT2 |
michael@0 | 28 | parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status); |
michael@0 | 29 | |
michael@0 | 30 | #endif |