]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/toolutil/flagparser.h
ICU-59117.0.1.tar.gz
[apple/icu.git] / icuSources / tools / toolutil / flagparser.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
729e4ab9
A
3/*
4*******************************************************************************
5*
4388f060 6* Copyright (C) 2009-2011, International Business Machines
729e4ab9
A
7* Corporation and others. All Rights Reserved.
8*
9*******************************************************************************
10* file name: flagparser.h
f3c0d7a5 11* encoding: UTF-8
729e4ab9
A
12* tab size: 8 (not used)
13* indentation:4
14*
15* created on: 2009jan08
16* created by: Michael Ow
17*
18* Tiny flag file parser using ICU and intended for use in ICU tests and in build tools.
19* Not suitable for production use. Not supported.
20* Not conformant. Not efficient.
21* But very small.
22*/
23
24#ifndef __FLAGPARSER_H__
25#define __FLAGPARSER_H__
26
27#include "unicode/utypes.h"
28
29U_CAPI int32_t U_EXPORT2
4388f060 30parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
729e4ab9
A
31
32#endif