scuffed-code/icu4c/source/tools/toolutil/ucmpwrit.h

40 lines
865 B
C
Raw Normal View History

/********************************************************************
*
* Copyright (C) 1997-2000, International Business Machines
* Corporation and others. All Rights Reserved.
*
*********************************************************************/
1999-12-04 02:34:06 +00:00
/**
API's for writing UCMPs.
Return nbytes written.
1999-12-04 02:34:06 +00:00
*/
#ifndef _UCMPWRIT
#define _UCMPWRIT
#include "unicode/utypes.h"
1999-12-04 02:34:06 +00:00
#include "unewdata.h"
#include "umemstrm.h"
1999-12-04 02:34:06 +00:00
#include "ucmp8.h"
#if 0
1999-12-04 02:34:06 +00:00
#include "ucmp16.h"
#include "ucmp32.h"
#endif
1999-12-04 02:34:06 +00:00
/* udata filestream variants */
U_CAPI uint32_t U_EXPORT2 udata_write_ucmp8 (UNewDataMemory *pData, const CompactByteArray* array);
#if 0
U_CAPI uint32_t U_EXPORT2 udata_write_ucmp16(UNewDataMemory *pData, const CompactShortArray* array);
U_CAPI uint32_t U_EXPORT2 udata_write_ucmp32(UNewDataMemory *pData, const CompactIntArray* array);
#endif
1999-12-04 02:34:06 +00:00
#endif