]> git.saurik.com Git - apple/icu.git/blob - icuSources/tools/toolutil/ucmpwrit.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / tools / toolutil / ucmpwrit.h
1 /********************************************************************
2 *
3 * Copyright (C) 1997-2000, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *
6 *********************************************************************/
7
8 /**
9 API's for writing UCMPs.
10 Return nbytes written.
11 */
12
13 #ifndef _UCMPWRIT
14 #define _UCMPWRIT
15
16 #include "unicode/utypes.h"
17 #include "unewdata.h"
18 #include "umemstrm.h"
19
20 #include "ucmp8.h"
21 #if 0
22 #include "ucmp16.h"
23 #include "ucmp32.h"
24 #endif
25
26 /* udata filestream variants */
27 U_CAPI uint32_t U_EXPORT2 udata_write_ucmp8 (UNewDataMemory *pData, const CompactByteArray* array);
28 #if 0
29 U_CAPI uint32_t U_EXPORT2 udata_write_ucmp16(UNewDataMemory *pData, const CompactShortArray* array);
30 U_CAPI uint32_t U_EXPORT2 udata_write_ucmp32(UNewDataMemory *pData, const CompactIntArray* array);
31 #endif
32
33 #endif
34
35
36
37
38
39