]> git.saurik.com Git - apple/icu.git/blob - icuSources/samples/layout/ucreader.cpp
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / samples / layout / ucreader.cpp
1 /*
2 *
3 * (C) Copyright IBM Corp. 1998-2007 - All Rights Reserved
4 *
5 */
6
7 #include "unicode/utypes.h"
8
9 #include "ucreader.h"
10 #include "gsupport.h"
11 #include "UnicodeReader.h"
12
13 U_CDECL_BEGIN
14
15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount)
16 {
17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
18 }
19
20 U_CDECL_END