1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
1999-12-13 22:28:37 +00:00
|
|
|
*
|
2003-06-03 20:58:22 +00:00
|
|
|
* Copyright (C) 1998-2003, International Business Machines
|
1999-12-13 22:28:37 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
1999-08-16 21:50:52 +00:00
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* File ustr.h
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 05/28/99 stephen Creation.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef USTR_H
|
|
|
|
#define USTR_H 1
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-04-23 22:25:44 +00:00
|
|
|
#define U_APPEND_CHAR32(c,target,len) { \
|
|
|
|
if (c <= 0xffff) \
|
|
|
|
{ \
|
|
|
|
*(target)++ = (UChar) c; \
|
|
|
|
len=1; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2003-02-15 01:37:01 +00:00
|
|
|
target[0] = U16_LEAD(c); \
|
|
|
|
target[1] = U16_TRAIL(c); \
|
2002-04-23 22:25:44 +00:00
|
|
|
len=2; \
|
2003-02-15 01:37:01 +00:00
|
|
|
target +=2; \
|
2002-04-23 22:25:44 +00:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* A C representation of a string "object" (to avoid realloc all the time) */
|
|
|
|
struct UString {
|
|
|
|
UChar *fChars;
|
|
|
|
int32_t fLength;
|
|
|
|
int32_t fCapacity;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ustr_init(struct UString *s);
|
|
|
|
|
2000-07-14 22:31:35 +00:00
|
|
|
void
|
|
|
|
ustr_initChars(struct UString *s, const char* source, int32_t length, UErrorCode *status);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
void ustr_deinit(struct UString *s);
|
|
|
|
|
|
|
|
void ustr_setlen(struct UString *s, int32_t len, UErrorCode *status);
|
|
|
|
|
2001-03-21 23:22:16 +00:00
|
|
|
void ustr_cpy(struct UString *dst, const struct UString *src,
|
2001-07-27 17:33:28 +00:00
|
|
|
UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
void ustr_cat(struct UString *dst, const struct UString *src,
|
2001-07-27 17:33:28 +00:00
|
|
|
UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-21 23:22:16 +00:00
|
|
|
void ustr_ncat(struct UString *dst, const struct UString *src,
|
2001-07-27 17:33:28 +00:00
|
|
|
int32_t n, UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
void ustr_ucat(struct UString *dst, UChar c, UErrorCode *status);
|
2003-08-26 02:36:57 +00:00
|
|
|
void ustr_u32cat(struct UString *dst, UChar32 c, UErrorCode *status);
|
2001-07-27 17:33:28 +00:00
|
|
|
void ustr_uscat(struct UString *dst, const UChar* src,int len,UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|