]> git.saurik.com Git - apple/icu.git/blame - icuSources/samples/layout/ucreader.cpp
ICU-66108.tar.gz
[apple/icu.git] / icuSources / samples / layout / ucreader.cpp
CommitLineData
46f4442e 1/*
f3c0d7a5
A
2 *
3 * © 2016 and later: Unicode, Inc. and others.
4 * License & terms of use: http://www.unicode.org/copyright.html#License
46f4442e
A
5 *
6 * (C) Copyright IBM Corp. 1998-2007 - All Rights Reserved
7 *
8 */
9
10#include "unicode/utypes.h"
11
12#include "ucreader.h"
13#include "gsupport.h"
14#include "UnicodeReader.h"
15
16U_CDECL_BEGIN
17
18const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount)
19{
20 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
21}
22
23U_CDECL_END