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

38 lines
820 B
C
Raw Normal View History

/********************************************************************
*
* Copyright (C) 1997-1999, 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 "ucmp8.h"
#include "ucmp16.h"
#include "ucmp32.h"
U_CAPI uint32_t U_EXPORT2 udata_write_ucmp8 (UNewDataMemory *pData, const CompactByteArray* array);
1999-12-04 02:34:06 +00:00
U_CAPI uint32_t U_EXPORT2 udata_write_ucmp16(UNewDataMemory *pData, const CompactShortArray* array);
1999-12-04 02:34:06 +00:00
/*Not implemented. [yet] */
/*U_CAPI uint32_t U_EXPORT2 udata_write_ucmp32(UNewDataMemory *pData, const CompactIntArray* array);*/
1999-12-04 02:34:06 +00:00
#endif