1999-12-13 22:28:37 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2001-03-17 23:31:46 +00:00
|
|
|
* Copyright (C) 1997-2001, International Business Machines
|
1999-12-13 22:28:37 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
* file name: cpputils.h
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*/
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#ifndef CPPUTILS_H
|
|
|
|
#define CPPUTILS_H
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-10-12 00:07:24 +00:00
|
|
|
#include "cmemory.h"
|
2001-03-17 23:31:46 +00:00
|
|
|
|
|
|
|
// forward declaration
|
|
|
|
class UnicodeString;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-10-12 00:07:24 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Array copy utility functions */
|
|
|
|
/*===========================================================================*/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const double* src, double* dst, int32_t count)
|
|
|
|
{ uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const double* src, int32_t srcStart,
|
1999-10-12 00:07:24 +00:00
|
|
|
double* dst, int32_t dstStart, int32_t count)
|
1999-12-28 23:39:02 +00:00
|
|
|
{ uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count)
|
|
|
|
{ uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int8_t* src, int32_t srcStart,
|
1999-10-12 00:07:24 +00:00
|
|
|
int8_t* dst, int32_t dstStart, int32_t count)
|
1999-12-28 23:39:02 +00:00
|
|
|
{ uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count)
|
|
|
|
{ uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int16_t* src, int32_t srcStart,
|
1999-10-12 00:07:24 +00:00
|
|
|
int16_t* dst, int32_t dstStart, int32_t count)
|
1999-12-28 23:39:02 +00:00
|
|
|
{ uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int32_t* src, int32_t* dst, int32_t count)
|
|
|
|
{ uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
inline void uprv_arrayCopy(const int32_t* src, int32_t srcStart,
|
1999-10-12 00:07:24 +00:00
|
|
|
int32_t* dst, int32_t dstStart, int32_t count)
|
1999-12-28 23:39:02 +00:00
|
|
|
{ uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
|
1999-10-12 00:07:24 +00:00
|
|
|
|
|
|
|
inline void
|
1999-12-28 23:39:02 +00:00
|
|
|
uprv_arrayCopy(const UChar *src, int32_t srcStart,
|
1999-10-12 00:07:24 +00:00
|
|
|
UChar *dst, int32_t dstStart, int32_t count)
|
1999-12-28 23:39:02 +00:00
|
|
|
{ uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-17 23:31:46 +00:00
|
|
|
/** Simple utility to fill a UChar array from a UnicodeString */
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
|
|
uprv_fillOutputString(const UnicodeString &temp,
|
|
|
|
UChar *dest,
|
|
|
|
int32_t destCapacity,
|
|
|
|
UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#endif /* _CPPUTILS */
|